tags:

views:

38

answers:

1

Hi All, I am new to this so need some help. What I want to do is... I want to give span to ul of primary link i.e secondary link using jQuery. I hope this is clear. Thanx in advanced.

A: 

Let me draw you up an image...... is this something you are thinking of?

<ul>
 <li> My primary link 1</li>
   <ul>
     <li> My secondary link 1 </li>
     <li> My secondary link 2 </li>
     <li> My secondary link 3 </li>
   </ul>
 <li> My primary link 2</li>
   <ul>
     <li> My secondary link 1 </li>
     <li> My secondary link 2 </li>
     <li> My secondary link 3 </li>
   </ul>
</ul>

If this is what you want, why not just output it using UL's and style the lists with css?

Steven