-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Request] removeAttr :) #8
Comments
$$('#elemID').attr('disabled', 'false') |
Hi :) I think I need to remove that attribute, with something like removeAttr and it will be removed, and not just added another string in the value of that attr. |
The selected attribute is a boolean attribute, and can be set in the following ways: option selected you cannot set it to false or anything. so, i think we need 'removeAttr()' function to completely remove the attribute |
ok :) I'll done :) 2012/10/30 Muhammad Azrain bin Kamaruddin notifications@github.com
|
Implemented in Quo 2.3 |
Hello and thank you for repairing the previous bug, I want to know if is possible to remove an attribute from an html element, because of the selected and checked attrs.
Note : I already did $$('#elemID').attr('disabled', false); but this is not working.
Thank you :)
The text was updated successfully, but these errors were encountered: