Skip to content

Instantly share code, notes, and snippets.

@juanlopezdev
Created July 15, 2015 17:42
Show Gist options
  • Select an option

  • Save juanlopezdev/fc36cb69c4da1f727e5f to your computer and use it in GitHub Desktop.

Select an option

Save juanlopezdev/fc36cb69c4da1f727e5f to your computer and use it in GitHub Desktop.
JAVASCRIPT: Navegar con javascript
function navigate_css(url) {
//var patt = new RegExp("fase/etapa-1") // Obtener expresion regular
var str = url;
$('#top-menu .list-menu li a').removeClass('active');
if (/registrate/.test(str)) {
$('#top-menu .list-menu li a[data-audi-page="registrate"]').addClass('active');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment