How to disable all links using jQuery
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…