JQUERY 30
JQuery no-click url hash By micha on 30th May 2023 11:55:47 AM
  1. /* jquery code to prevent hash(#) view in url when clicking <a href='#'> */
  2.  
  3. $('a[href="#"]').click(function(e){
  4.   //$(this).css('border','1px red solid');
  5.     e.preventDefault();
  6. })

Paste is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.