$('.dragbox').each(function(){
$('.close').click(function(){
$(this).parent().hide();
}),
$('.colpase').click(function(){
$(this).siblings('.dragbox_content').toggle();
})
});
|
|
|
Considering jquery works as a wrapped set (collection) i dont think you need the each method, just the
the handlers will be applied to all matched elements without the need for the each. this will find all of the .close and .colpase inside of the .dragbox item(s) i assumed that is what you were after... edited to use find in order to gain slight performance improvement. Thanks Dan/Alex. |
|||||||||||
|
|
No. Presumably you want to apply the click handlers to matching elements within each dragbox. You can do that with:
If you just wanted to add the handlers globally, you wouldn't want the each. |
|||
|
|
|
It doesn't look as if you need the each() function there. You may be applying the event handlers to the objects multiple times. Just:
Should do the trick. |
|||||
|
|
if you're referring to "parent" to actual ". dragbox" in "each"
|
|||
|
|
|
||||
|
|