[jQuery] Live function being weird
I have two snippets of code:
This one doesn't work
$("form[name='edit']").live('click', function() {
return false;
});
This one does:
$("form[name='edit']").click( function() {
return false;
});
I'm not sure why this is though, are attribute filters not supported
with the live functions?