Skip to content

Instantly share code, notes, and snippets.

@internoma
Created May 20, 2013 18:53
Show Gist options
  • Save internoma/5614406 to your computer and use it in GitHub Desktop.
Save internoma/5614406 to your computer and use it in GitHub Desktop.
Jquery Responsive @mediaqueries
$(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