#10046 closed bug (duplicate)
fail when attr("disabled",false)
Reported by: | gr0org | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | attributes | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
attr("disabled",true) is OK.
attr("disabled",false) is NG.
jquery-1.6.2 is NG.
jquery-1.6.1 is OK.
<html> <head> <script type="text/javascript" src="jquery-1.6.2.js"></script> <script type="text/javascript"> ;$(function(){ $("#b01").click(function(){ $("#b02").attr("disabled",!$("#b02").attr("disabled")); }); }); </script> </head> <body> <div> <input type="button" id="b01" value="b01" /> <input type="button" id="b02" value="b02" /> </div> </body> </html>
Change History (7)
comment:1 Changed 11 years ago by
comment:3 follow-up: 6 Changed 11 years ago by
Component: | unfiled → attributes |
---|---|
Priority: | undecided → low |
Resolution: | → duplicate |
Status: | new → closed |
comment:5 Changed 11 years ago by
Note: See
TracTickets for help on using
tickets.
IE7 is NG. FF is OK.