hi! i want to add id tags to primary links menu.. it should look something like this:
<li><a id="home" href="#">Home</a></li>
<li><a id="about" href="#">About</a></li>
<li><a id="contact" href="#">Contact</a></li>
currently, it's just
<li><a href="/test/drupal/content/home">Home</a></li>
<li><a href="/test/drupal/content/about">About</a></li>
<li><a href="/test/drupal/content/contact">Contact</a></li>
to change the address to "#" is it ok to use url aliases?
I just want to add attributes to l() when it creates the primary menu, thatz it in a nutshell..
any suggestions? should i edit any file or create new function to do this job? I'm using zen theme(just for an info) many thanks..