Hi -

Thanks for the useful information about how to add JavaScript to a page.

I know it's not quite on the topic of RoR, but I need a little bit of 
help with my JavaScript.

My HTML is as follows:


<ul id="nav">
  <li id="nav-welcome"><a href="http://www.spongenewmedia.co.uk/"; 
title="Return to the home page"Welcome</a></li>
  <li id="nav-blog"><a href="/blog/" title="Read the latest blog 
entries">Blog</a></li>
  <li id="nav-contact"><a href="/contact/" title="Contact information 
for Oliver Coningham">Contact</a></li>
</ul>

What I want to do is apply the class "selected" to certain links using 
JavaScript. The purpose of this is to show waht page you are currently 
on.

The JavaScript I currently have is this:

<script type="text/javascript">
    document.getElementById('nav-blog').className='selected';
</script>

However, this only applys the class of "selected" to the <li> item. How 
to use the getElementById function to select the actual hyperlink?

Many thanks in advance!



-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
Radiant mailing list
Post:   [email protected]
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

Reply via email to