Skip to content Skip to sidebar Skip to footer

Responsive Javascript – Load/hide Specific Function Related To Browser Width?

first fo all: i'm not into JavaScript/JQuery! …but i will try to point out what i want to do. i'm using the fantastic bx-slider on my page and i made my website responsive via me

Solution 1:

If($(document).width() < 500){
...
}else{
...
}

http://api.jquery.com/width/

You may also want to put in an onchange event

$( window ).resize(function() {
 resizefunction();
});

http://api.jquery.com/resize/

Post a Comment for "Responsive Javascript – Load/hide Specific Function Related To Browser Width?"