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/MBoogaard/oosting-horseriding.com/CMS/CMSScripts/Custom/Oosting/main.js
$(document).ready(function() {  
  $('.dropdown-menu').siblings('a').addClass('dropdown-toggle');
  $('.dropdown-menu').siblings('a').attr('data-toggle','dropdown');
  $('.dropdown-menu').siblings('a').append('<b class="caret"></b>');
  $('.dropdown-menu').siblings('li').addClass('dropdown');
  $(".dropdown-menu").parent().hover(function(){ 
    $('.dropdown-menu').siblings('li').addClass('dropdown open');
  });
  
  /*Start Breadcrumbs*/
  var BFirstElementText=jQuery('.breadcrumb a').first().html();
  if(BFirstElementText==null){
    BFirstElementText=jQuery('.breadcrumb span').first().text();
  }
  if(BFirstElementText!='Home' && BFirstElementText!=null){
    jQuery('.breadcrumb').prepend('<li><a class="CMSBreadCrumbsLink" title="Home" href="/">Home</a> /</li>');
  };
  jQuery('.CMSBreadCrumbsCurrentItem').addClass('active');
  
  /*End Breadcrumbs */ 
  $(location).attr('href');
  var pathname = window.location.pathname; 
  if(pathname=='/')
  {
    $( ".navbar-nav li" ).first().addClass( "active" );
  }
  $.each($('.navbar-collapse ul li a'),function(index,item){
    if($(this).attr('href') == pathname)
    {
      $(this).parent().addClass('active');
    }
  });
  
});