I am hoping you can help me with a code I am trying to make for Zeta Boards. It adds a drop-down menu with what ever links you want in it.
[quote]<script> function dropdown(sname,lurl){ //Code Created by Agent Moose $(".drop_menu").before("<ul id='top_menu' class='drop_menu'><li id='menu_ucp'><a href='#'><img src='http://209.85.62.27/static/1/ m_ucp.png' /> "+ mname +"</a><ul><li><a href='"+ lurl +"'>"+ sname +"</ a></li></ul></li></ul>"); } mname = "Pages" dropdown("Arcade","http://beta.zetaboards.com/MooseCreations/pages/ arcade"); </script>[/quote] I want it to make it so that when you make more of these: dropdown("Arcade","http://beta.zetaboards.com/MooseCreations/pages/ arcade"); It will add more links to the dropdown menu. Also, I would like it you added more of these: mname = "Pages" it will make a new whole new dropdown menu. and you will be able to add diffrent links to each drop-down menu. wanna help me?