Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".sidebar-wrapper a").on('click', function(e){
  2.     e.preventDefault();
  3.     var href = $(this).attr('href');
  4.     console.log(href);
  5.     $.ajax({  
  6.         url: href,  
  7.         cache: false,  
  8.         success: function(html){  
  9.             $("#content").html(html);  
  10.         }  
  11.     });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement