Difference between revisions of "MediaWiki:Common.js"

From Phoenix Cart User Guide
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: jQuery(function(){ jQuery(".btn-back").click(function(){ window.history.back(); }); });")
 
Line 5: Line 5:
  
 
window.history.back();
 
window.history.back();
 +
 +
});
 +
 +
jQuery(".btn-home").click(function(){
 +
 +
window.location.href = "/phoenixcartwiki/index.php";
  
 
});
 
});
  
 
});
 
});

Revision as of 05:40, 25 March 2021

/* Any JavaScript here will be loaded for all users on every page load. */
jQuery(function(){

jQuery(".btn-back").click(function(){

window.history.back();

});

jQuery(".btn-home").click(function(){

window.location.href = "/phoenixcartwiki/index.php";

});

});