Hi everybody,
Would really appreciate some help with the following:
I want to make a drop down menu with:
- links
- logo (image) of each company I link to.
- that opens the link in a new tab
I copied something like the code bellow but it doesn’t seem to work.
Thanks for your assistance!
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN”
“http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“en”>
<body>
<form action=“”>
<form name=“jump”>
<p><select name=“menu”>
<option selected>KCS GROUP Websites</option>
<option value=“<a href=“http://www.abc111.com”><img src=“images/navigation/abc.jpg” alt=“abc” height=“10” width=“10” style= “border: none;”/>ABC</a></option>
<option value=”<a href=“http://www.abc111.com”><img src=“images/navigation/abc.jpg” alt=“abc” height=“10” width=“10” style= “border: none;”/>ABC</a></option>
<option value="<a href=“http://www.abc111.com”><img src=“images/navigation/abc.jpg” alt=“abc” height=“10” width=“10” style= “border: none;”/>ABC</a></option>
</select>
<input type=“button” value=“GO!” onClick=“tab.open(this.form.jumpmenu.options[this.form.jumpmenu.selectedIndex].value;”>
</p>
</form>
</body>
</html>