Skip to content

Instantly share code, notes, and snippets.

@maxcraftsman
Last active April 16, 2018 01:13
Show Gist options
  • Save maxcraftsman/4a0b890677df8b9b6828c9698f8d9558 to your computer and use it in GitHub Desktop.
Save maxcraftsman/4a0b890677df8b9b6828c9698f8d9558 to your computer and use it in GitHub Desktop.
foundation javascript breakpoints [js]
$(window).on('changed.zf.mediaquery', function(event, newSize, oldSize) {
modal();
})
modal();
function modal(){
if (Foundation.MediaQuery.is('large') == true) {
alert('large');
} else if (Foundation.MediaQuery.is('medium') == true) {
alert('medium');
} else {
alert('small');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment