I have a link button inside a
I think a lot of these are over thinking. Add a class of whatever you want, like which I have to disable. This works on IE but not working in Firefox and Chrome.
Structure is - Link inside a <
disabled_link
.
Then make the css have .disabled_link { display: none }
Boom now the user can't see the link so you won't have to worry about them clicking it. If they do something to satisfy the link being clickable, simply remove the class with jQuery: $("a.disabled_link").removeClass("super_disabled")
. Boom done!