Custom Query (13852 matches)
Results (13 - 15 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#8977 | invalid | :checked attribute returning the first value, even after changes | ||
Description |
<input type="checkbox" checked="checked" id="sure"/> <input type="checkbox" id="unsure"/> <script> $('#sure,#unsure').change(function(){ console.log($('#sure').attr('checked'),$('#unsure').attr('checked')); }) //1.6b1 $("#unsure").trigger('change') // checked undefined $("#unsure").trigger('change') // checked undefined //1.5.2 $("#unsure").trigger('change') // true true $("#unsure").trigger('change') // true false </script> |
|||
#228 | invalid | different behavior for next() in IE and Firefox | ||
Description |
When using this code: <html>
</html> In IE when clicking Twee (Dutch for Two) Drie (Dutch for Three) and sibblings dissapear, in FireFox the A, B, C part dissapears. I'm more happy with the FireFox behavior..... |
|||
#5326 | worksforme | Cannot unbind mouseenter/mouseleave events using a 'namespace' | ||
Description |
The unbind(".NAMESPACE") functionality does not work for the mouseenter and mouseleave pseudo-events. $(el).bind("click.mywidget"); $(el).bind("mouseenter.mywidget"); $(el).unbind(".mywidget"); unbind This unbinds "click.mywidget", but NOT "mouseenter.mywidget". Even if the event name is added, mouseenter still won't unbind when the namespace is specified... $(el).unbind("mouseenter.mywidget"); does not work The only way to unbind mouseenter is to *not* specify the namespace - ie, unbind *all* mouseenter events... $P.unbind("mouseenter"); works normally The same thing applies to mouseleave. The main issue here is that unbinding an event.namespace *should* unbind ALL events that were added using bind("event.namespace"). FYI: I posted this in the dev-forum for feedback, but got no response: |