I use Jquery UI 1.9.2
to convert an <a>
tag into a button.
But disabling newly created button only affect appearance(good) and mouse click still works(bad).
I'm using firefox 32
.
Here is my snippet:
<a href="#" onclick="alert('hi');">click me if enabled</a>
<script>
$('a').button({disabled:true});
</script>
Is this behavior related to nature of <a>
tag and cannot be addressed by jquery UI
tools and options?
How can i suppress onClick
anyway?