Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

can someone tell me what the difference between assigning event handlers using bind():

$(function(){
    	   $('someElement')
    	   .bind('mouseover',function(e) {
    		$(this).css({
    					//change color
    					});
    })
    .bind('mouseout',function(e) {
    	$(this).css({
    				//return to previous state

    			 });	
    })
    .bind('click',function(e) {
    	$(this).css({
    				//do smth.
    			 });	
    })

});

and using each() for the same task:

$('someElement').each(function(){

    	$(this).mouseover(function(){$(this).css({/*change color*/})
    				.mouseout(function(){$(this).css({/*return to previous state*/});	
    				});		
    			});	
    });

thank you.

share|improve this question
Your second example is not demonstrating the 'each' method. Just so you know... – KyleFarris Apr 16 '09 at 15:05
oh, i'll fix. ty – chosta Apr 16 '09 at 15:10

1 Answer

up vote 5 down vote accepted

From the examples you gave, I think you're actually asking what the difference, if any, is there between using the 'bind' method and then 'event' methods.

For example, what's the difference between:

$('.some_element').bind('click',function() { /* do stuff */ });

... and this?

$('.some_element').click(function() { /* do stuff */ });

The answer is that it really doesn't matter. It's a matter of preference. The event methods are syntactically simpler and involve less typing, but, as far as I know there really isn't any difference. I prefer to use the bind methods because you can use shorthand event binding if you need to attach more than one event to the same action. It also makes it simpler to understand when/if you need to 'unbind' an event.

See here: http://stackoverflow.com/questions/562548/jquery-difference-between-bind-and-other-events

But, from what the actual question asks, "What's the difference between the 'each' method and the 'bind' method"... well, that's a totally different beast.

You should never really use the 'each' method to attach events because the 'bind' and 'event' methods use the much quicker CSS selector engine (in jQuery's case, it uses the Sizzle engine).

There's hardly ever (or never) a case where this:

$('.some_element').each(function() { $(this).click(function() { /* do something */ }); });

... is better than this:

$('.some_element').bind('click',function() { /* do stuff */ });
share|improve this answer
that is what i needed to know, thank you. – chosta Apr 16 '09 at 15:17
Good to hear, you are welcome! – KyleFarris Apr 16 '09 at 15:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.