Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Stevenlitton/7284197 to your computer and use it in GitHub Desktop.
Save Stevenlitton/7284197 to your computer and use it in GitHub Desktop.
On click this will check the window size and if it is smaller than 500px it will go to the modal page otherwise will show the popup
jQuery(".open-modal").click(function(){
if (jQuery(window).width() < 500) {
window.location = 'http://www.themodalpage.com';
}
else {
jQuery("#modal").fadeIn();
jQuery(".modal-overlay").fadeIn();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment