Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a sidebar list of links, code shown below...

<div class="WikiCustomNav WikiElement wiki"><a href="/" class="wiki_link">Home</a>
<a href="/Calendar" class="wiki_link">Calendar</a>
<a href="/Science" class="wiki_link">Science</a>
<a href="/Language+Arts" class="wiki_link">Language Arts</a>
<a href="/Video+Page" class="wiki_link">Video Page</a>
<a href="/Code+Page" class="wiki_link">Code Page</a>
<a href="/Geography" class="wiki_link">Geography</a>
<a href="/Western+Day" class="wiki_link_new">Delicious Bookmarks</a>
<a href="/Field+Day" class="wiki_link">Field Day</a>
<a href="/Share+Posts" class="wiki_link">Share Posts</a>
<a href="/Audio+Page" class="wiki_link">Audio Page</a>
<a href="/Map+Page" class="wiki_link">Map Page</a>
<a href="/Staff+Olympics" class="wiki_link">Staff Olympics</a>
<a href="/Scribd+Document" class="wiki_link">Scribd Document</a>
<a href="/Staff+Meetings" class="wiki_link_new">Staff Meetings</a>
<a href="/Staff+Phone+Tree" class="wiki_link_new">Staff Phone Tree</a>
<a href="/Employee+Procedures" class="wiki_link_new">Employee Procedures</a>
<a href="/Student+Handbook" class="wiki_link">Student Handbook</a>
<a href="/Table+Sorter" class="wiki_link">Table Sorter</a>
<a href="/Teachers+Tips" class="wiki_link">Teachers Tips</a>

In Wikispaces, both the classes "wiki_link" and "wiki_link_new" are applied by default when adding a new sidebar link. I'd like to use jQuery to remove both of those classes, and instead, add a "selected" class to the link if that page is currently being viewed.

Also, I would like to remove the div that surrounds the list of links, and replace it with an unordered list, with each link wrapped in a list item, like so...

<ul>
<li><a href="/Calendar">Calendar</a></li>
<li><a href="/Science">Science</a></li>
<li>and so on...</li>
</ul>

Does anyone know how to accomplish this with jQuery? Thanks for your help!

share|improve this question

2 Answers

up vote 4 down vote accepted

Want to see some deep jQuery magic? This will convert your div into a list (jQuery 1.4+) and do the class mangling:

$("div.wiki").wrap("<ul>").children("a").unwrap().wrap("<li>").removeAttr("class")
  .filter("[href='" + ocation.pathname + "']").addClass("selected");

Ok, how does this work? It:

  • Selects div.wiki;
  • Wraps it in a <ul>;
  • Selects the children of the <div> (wrap() returns the <div> still *not* the);</li> <li>Unwraps them, meaning the <code>&lt;div&gt; is deleted and the links are children to the</code><ul> now;
  • Wraps each link in a <li>;
  • Removes all classes from the links;
  • Filters down to the link(s) that have a href equalling the relative path of the window location; and
  • Adds the selected class to that link.
Edit: Here is a fully working example that I ran locally under http://localhost/test.html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
  $("div.wiki").wrap("<ul>").children("a").unwrap().wrap("<li>").removeAttr("class")
    .filter("[href='" + location.pathname + "']").addClass("selected");
  $("#dump").text($("#content").html());
});
</script>
<style type="text/css">
</style>
</head>
<body>
<div id="content">
<div class="wiki">
<a href="/one" class="wiki_link">one</a>
<a href="/test.html" class="wiki_link">two</a>
<a href="/three" class="wiki_link wiki_link_new">three</a>
</div>
</div>
<pre id="dump">
</pre>
</body>
</html>

Output:

<ul>
<li><a href="/one">one</a></li>
<li><a class="selected" href="/test.php">two</a></li>
<li><a href="/three">three</a></li>
</ul>

If you want to find out what version of jQuery you have run:

alert($().jquery);

Edit: jQuery 1.3 version:

var wiki = $("div.wiki");
wiki.children("a").wrapAll("<ul>").wrap("<li>").removeAttr("class")
  .filter("[href='" + location.pathname + "']").addClass("selected")
  .end().parent().parent().insertAfter(wiki);
wiki.remove();
share|improve this answer
This code did not do the trick. It did not remove any of the wiki_link or wiki_link_new classes, and it did not add the "selected" class to the link corresponding to currently viewed page. It also wrapped the current div with 2 unordered lists, without wrapping any of the links with <li>'s. It also did not remove the div. – Spencer B. Feb 1 '10 at 2:02
I think it may be because wikispaces loads jQuery, but it may not be the most current version (1.4). Would you know how to do it with a previous version of jQuery? – Spencer B. Feb 1 '10 at 2:09
@Spencer: I had a typo (pathName instead of pathname). Otherwise it works (try the example). Not sure what version of jQuery Wikispaces runs. – cletus Feb 1 '10 at 2:21
If Wikispaces does use a previous version of jQuery, will your solution still work? UPDATE I just checked the version they use, and it's 1.3.2. So, I guess your solution isn't working for that reason. – Spencer B. Feb 1 '10 at 2:27
@Spencer: unwrap() I believe is jQuery 1.4. An alternate solution can be found but first find out what version they're using (using the above snippet). – cletus Feb 1 '10 at 2:31
show 3 more comments

Sounds like you need to do something like this:

$(".wiki_link").removeClass("wiki_link");   // remove the css class
$(".wiki_link_new").removeClass("wiki_link_new");

// adds the selected class to the link who's href attribute contains 
// the current relative path.  Probably needs tweaking based on querystrings
// and whatnot.
$(".wiki_link[href~=" + window.location.pathname +"]").addClass("selected");  

If all the links have the same two classes (wiki_link and wiki_link_new) you can remove them both at once by doing removeClass("wiki_link wiki_link_new").

share|improve this answer
This did the trick in removing the wiki_link class, but still leaves the wiki_link_new class. It also applied the "selected" class to the currently viewed page corresponding to the link. So that worked good... would you know how to remove the div that wraps the links, and replace it with an unordered list, which would also wrap the link with <li>'s? Thanks for your help. – Spencer B. Feb 1 '10 at 2:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.