Access Keys:
Skip to content (Access Key - 0)
Home (Access Key - 1)
All spaces... (Access Key - 3)
Log in (Access Key - 5)
Sign up (Access Key - 6)
Toggle Sidebar

jQuery code for Will...

(None)

Just a snipptet of jQuery code for a project Will is working on, although we might be able to use this in Confluence as well to highlight links to the current page (ie. show which section of a site we're in)...

You'll obviously need jQuery to be present on the page...

jQuery(function($){
 $('a[href]').each(function(i,a){
  if (window.location.indexOf(a.href)!=-1) $(a).addClass('current-page');
 });
});

I've not tested the code, it's off the top of my head and could contain bugs, but give it a try...

Toggle Sidebar
Added by Guy Fraser on Mar 25, 2008 18:52, last edited by Guy Fraser on Mar 25, 2008 18:59

Adaptavist Theme Builder Powered by Atlassian Confluence