Guest User

Untitled

a guest
Dec 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.     $('#topnav a').click(function(event) {
  3.         var url = $(this).prop('href');
  4.         history.pushState({}, '', url);
  5.         $('#content').load(url);
  6.         return false;
  7.     });
  8. });
Add Comment
Please, Sign In to add comment