tags:

views:

27

answers:

1

Hi All,

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

+4  A: 

You remove the attribute:

$("#rightt").removeAttr("disabled");
T.J. Crowder