Reputation: 5343
I am using the following code to disable the anchor tag.Can anyone tell me how to enable it using jquery.
Code:
$("#rightt").attr("disabled", "disabled");
Geetha
Upvotes: 0
Views: 66
Reputation: 1074555
You remove the attribute:
$("#rightt").removeAttr("disabled");
Upvotes: 3