Skip to content

Instantly share code, notes, and snippets.

@adrianherritt
Created February 26, 2013 14:29
Show Gist options
  • Save adrianherritt/5038803 to your computer and use it in GitHub Desktop.
Save adrianherritt/5038803 to your computer and use it in GitHub Desktop.
$(document).ready(function($) {
/* getting viewport width */
var responsive_viewport = $(window).width();
/* if is below 481px */
if (responsive_viewport < 481) {
} /* end smallest screen */
/* if is larger than 481px */
if (responsive_viewport > 481) {
} /* end larger than 481px */
/* if is above or equal to 768px */
if (responsive_viewport >= 768) {
}
/* off the bat large screen actions */
if (responsive_viewport > 1030) {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment