To disable all links using jQuery you cna use the snippet below.

Samples

jQuery Sample

<script type="text/javascript">
   $("a").click(function() { return false; });
</script>

If you have any questions or suggestions feel free to rate this snippet, post a comment or Contact Us via Email.

Related links:

6 thought on “How to disable all links using jQuery”

Leave a Reply