Guest User

Untitled

a guest
Nov 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $('body').on('click', 'a', function(e) {
  2. if($(this).attr("href") == "#") {
  3. return;
  4. }
  5.  
  6. e.preventDefault();
  7.  
  8. $('body').load( $(this).attr("href"), function( response, status, xhr ) {
  9. if ( status == "error" ) {
  10. var msg = "Sorry but there was an error loading your page: ";
  11. console.log(msg + xhr.status + " " + xhr.statusText );
  12. }
  13. })
  14. });
Add Comment
Please, Sign In to add comment