fazlurr
5/9/2016 - 4:34 AM

Detect Device Size based on Bootstrap Breakpoints - http://stackoverflow.com/a/18575768

Detect Device Size based on Bootstrap Breakpoints - http://stackoverflow.com/a/18575768

if ($(window).width() < 768) {
    // do something for small screens
}
else if ($(window).width() >= 768 &&  $(window).width() <= 992) {
    // do something for medium screens
}
else if ($(window).width() > 992 &&  $(window).width() <= 1200) {
    // do something for big screens
}
else  {
    // do something for huge screens
}