HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/PBoog/gebr-vugts.nl/wwwroot/templates/hot_clinic/js/jquery.hjt.navv.js
/*------------------------------------------------------------------------
# "Sparky Framework" - Joomla Template Framework
# Copyright (C) 2013 HotThemes. All Rights Reserved.
# License: http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
# Author: HotJoomlaTemplates.com
# Website: http://www.hotjoomlatemplates.com
-------------------------------------------------------------------------*/

(function(jQuery){  
 jQuery.fn.dropDownMenu = function(options) {  
  
  var defaults = {  
   speed: 300,  
   effect: 'fadeToggle'
  };  
  var options = jQuery.extend(defaults, options);  
      
  return this.each(function() { 

    jQuery('.navv ul').hide();
    jQuery('.navv li ul li').filter(':last-child').css('border-bottom', 'none');
    jQuery('.navv li').hover(function(){
      jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
      },function(){
        jQuery(this).css('position', 'relative')
                    .find('ul:first').stop(true,true)[options.effect](options.speed);
    });

  });  
 };  
})(jQuery);