how to disable <a> tag links in jquery??
I am using jquery version 10. need to disable all "Anchor links" in my project
my code:
Jquery:
- function Example(){
- $("a.sample").off("click");
- }
html:
- <a href="JavaScript:void(0);" id="sample" class="sample">
- <img src="/Content/Images/editIcon.png" title="click">click
- </a>
Please reply for this... am expecting valuable reply...
thank you