Differences Between jQuery .bind() vs .live() vs .delegate() vs .on() 14 years ago
What? No they don't, unless you're making the handler in a loop.
$( "div" ).click( function() {} );
Each div will have the same handler applied, it doesn't make a new one for every div.