No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

22 líneas
521 B

  1. jQuery(document).ready(function($) {
  2. $(window).on('popstate pushstate', _update);
  3. _update();
  4. function _update() {
  5. var url = window.location.href;
  6. $('a.nav-link:not([data-toggle]), a.dropdown-item').map(function() {
  7. $(this).toggleClass('active', this.href == url || this.href == url.split("?")[0].split("#")[0]);
  8. });
  9. $('a.dropdown-item.active').map(function() {
  10. $(this).closest('.nav-item.dropdown').find('.dropdown-toggle').toggleClass('active');
  11. });
  12. }
  13. });