Skip to content

Instantly share code, notes, and snippets.

@kartick14
Created February 21, 2019 12:32
Show Gist options
  • Select an option

  • Save kartick14/fd218fe956220e9ce045ed9c7ddd0f5b to your computer and use it in GitHub Desktop.

Select an option

Save kartick14/fd218fe956220e9ce045ed9c7ddd0f5b to your computer and use it in GitHub Desktop.
Create global function in jquery
window.myModule = window.myModule || {};
myModule.upsellReload = (function() { //global function call from anywhere
console.log('Upsell added!');
location.reload();
});
myModule.upsellReload(); //Call function from anywhere
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment