Inconsistency with iE6 and FF:
- <body>
- <input type="button" disabled="disabled" value="click"/>
- <script type="text/javascript">
- $("input").live("click", function(){
- alert("clicked");
- });
- </script>
- </body>
iE triggers and propagates a click, even though the button is disabled. FF does not trigger a click, as the button is disabled.
This means that in iE6, live events fire on disabled buttons, which is kinda bad sometimes!