Yes, the one is just an ordinary link. So.... I can't get the syntax just right. So with the above example that I listed, how would you do the coding. (with your first example) If I understand you correctly, since it is just an ordinary link, I don't have to do an onclick.
I want the user to click the button & it does
First: <input class="submit-button" type="submit" name="next" value="Next" onclick="document.PdcSurvey.PdcButtonPressed.value='next';" />
Last: <li><a href="http://www.google.com/ig?hl=en" target="_blank">Next Page>></a></li>
Submits & then opens a new browser tab.
Sorry, I am still really new to this. Just need help with this syntax.
Thanks!
==============================================
QUOTE(pandy @ Nov 3 2009, 06:20 PM)

The second one is an ordinary link. It doesn't have an onclick. So just move the onlick there.
CODE
<a href="http://..." onclick="...">
If you really have two JS snippets you want to run with the same event, you can just list them. Don't forget to finish each statement with a semicolon though.
CODE
<p onclick="doThis();doThat();">