I want urgent help for opening only few links in a drop-down menu to new windows. :(
I know how to open ALL links in a drop-down menu to new windows as follows:
But I'm hitting a road block when trying to open only few links in new windows. I tried looking on the net and got the following link but it was not useful:
I would use javascript. In the SELECT NAME tag, just make it point to your javascript function. onChange = javascript:openWindow();>
Then create a javascript function called openWindow(). You can also write the code in there to open a new window. But before you do that, use the "if" statement to open only certain links with the new window.
if (document.form.selectURL1.value = "Job Definition")
then put code to open in same window
else
open in new window
You can just force this to happen in your javascript.
2006-06-07 00:57:54
·
answer #2
·
answered by Sean I.T ?7
·
0⤊0⤋