So if I have a binding like this:

$("div.clickme").bind("click", function() {
 // Do stuff
});

Is there NO WAY to use .trigger("click") to only call the handler (ie the
old pre 1.1 functionality)? This is really annoying and seriously breaks my
app :(

Eg sometimes I have forms that load with certain checkboxes checked by
default, my JS then looks for them and runs the click handler which does
some fancy stuff. With 1.1 trigger("click") will actually uncheck these
boxes before running the handler which is not the behaviour I desire.

Any ideas?

Cheers,

Chris
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to