using jQuery .live with .bind
- by Aninemity
okay, I understand the basics of jQuery, and I know that in some instances I've had to use .live('click',function(){...}); instead of .click(function(){...}); to get the method to fire correctly.
the method I'm currently looking at is:
$('#title').bind('keyup', function(){...});
This works great, except because it's in a bit of code that isn't…