0

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

Geeth
  • 5,282
  • 21
  • 82
  • 133
  • Possible duplicate http://stackoverflow.com/questions/1164635/how-to-enable-or-disable-anchor-tag-using-jquery – ukanth May 11 '10 at 07:07

1 Answers1

3

You remove the attribute:

$("#rightt").removeAttr("disabled");
T.J. Crowder
  • 1,031,962
  • 187
  • 1,923
  • 1,875