Hello all,
My code for disable anchor tag is like
function disablediv() {
$('#div1 :button').attr('disabled', true);
$("a").click(function (event) {
event.preventDefault();
});
}
using this code i have disabled the all anchor tag but after that i cant enable the anchor tag.
Plaese any one tell me how to enable all anchor tag after event.preventDefault();
Thanks

Ajith MohanPosted May 21, 2015, 9:00 AM
ramya bharathPosted May 20, 2015, 7:41 PM