Jump to content

using unbind in jquery media queries


erme

Recommended Posts

Hi, I only want a bit of javascruipt to run when window width is larger then 768px. In other words, for mobile devices I dont want it to load. This needs to work when resizing the browser window.

 

var delay = (function(){
   var timer = 0;
   return function(callback, ms){
    clearTimeout (timer);
    timer = setTimeout(callback, ms);
   };
})();

$(function() {

   var pause = 100; // will only process code within delay(function() { ... }) every 100ms.

   $(window).resize(function() {

    delay(function() {

	    var width = $(window).width();

           if( width >= 768 ) {

               var carouselOptions = {
                   auto: true,
                   btnNext: "#quicklinks_right",
                   btnPrev: "#quicklinks_left",
                   visible: 4,
                   speed: 1000,
                   pause: true,
                   responsive: true
               };

               $('#quicklinks').jCarouselLite(carouselOptions);

               $("ul.sf-menu").superfish({
                   animation: {height:'show'}, // slide-down effect without fade-in
                   delay: 800    
               });

           }

           else if( width <= 767 ) {

               $('#quicklinks').unbind(); // not sure if this works?

               $("ul.sf-menu").unbind(); // not sure if this works?
	    }


    }, pause );

   });

   $(window).resize();

});

Edited by erme
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.