jQuery(function($){ jQuery('.slider').mobilyslider({ content: '.sliderContent', children: 'div', transition: 'horizontal', animationSpeed: 500, autoplay: true, autoplaySpeed: 2000, pauseOnHover: false, bullets: true, arrows: true, arrowsHide: true, prev: 'prev', next: 'next', animationStart: function(){}, animationComplete: function(){} }); }); function screenFunc(){ jQuery(".sel").each(function(){ jQuery(this).find(".que").on("mouseenter",function(){ console.log(jQuery(this).parents(".sel")); jQuery(this).parent().find(".tt").show(); jQuery(this).parents(".sel").css("z-index",10); jQuery(".sel").not(jQuery(this).parents(".sel")).css("z-index",1); }); jQuery(this).find(".que").on("mouseleave",function(){ jQuery(this).parent().find(".tt").hide(); }); }); } jQuery(document).ready(function(){ jQuery('#quicklink').find('a[href^="#"]').bind('click', function(){ var $select_id = jQuery(jQuery(this).attr('href')); $select_id.attr("tabindex","-1").focus(); $select_id.bind('focusout', function(){ $select_id.removeAttr("tabindex"); }); }); jQuery('#btn01, #btn02, #btn03, #btn04, #btn05, #btn06').attr('tabindex','0'); });