Hi
I'm trying to use the jQuery superfish plug-in to create the 2 level
menu
but I need to grab the first level of the menu from table and td not
from ul and li
I'm new to jQuery so I can't get it work
any one could help me with that?
this is my html
<table class="sf-menu">
        <tr>
            <td><a href="#">first level</a>
                <ul>
                    <li><a href="#">second level</a></li>
                    <li><a href="#">second level</a></li>
                    <li><a href="#">second level</a></li>
                </ul>
            </td>
         </tr>
         <tr>
            <td><a href="#">first level</a>
                <ul>
                    <li><a href="#">second level</a></li>
                    <li><a href="#">second level</a></li>
                    <li><a href="#">second level</a></li>
                </ul>
            </td>
          </tr>
          <tr>
            <td><a href="#">first level</a></td>
          </tr>
</table>

Reply via email to