Skip to content

Instantly share code, notes, and snippets.

@dpwrussell
Created April 16, 2014 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpwrussell/10853517 to your computer and use it in GitHub Desktop.
Save dpwrussell/10853517 to your computer and use it in GitHub Desktop.
Smart selector for hyperlinks based on url
<script type="text/javascript">
$(document).ready(function()
{
$('#webadmin_main_tabs a[href*="' + location.pathname.split("/")[2] + '"]').addClass('selected_admin_tab');
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment