You'll have to explain further. As far as I can see, the drop down menu here:
http://users.igl.net/salteyseaman/topbar.htm
Opens every dropdown selected link in a new window (including the items you don't want to trigger...
)
Because it was getting to me that items were opening in new windows that were null, I did a tiny rewrite:
Code:
<script type="text/javascript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source http://javascript.internet.com -->
function formHandler(form) {
var windowprops = "height=600,width=800,location=no,"
+ "scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
var URL = form.site.options[form.site.selectedIndex].value;
if(URL==""){}
else{
popup = window.open(URL,"MenuPopup",windowprops); }
}
</script>
So that sorts one problem out.
As for your original problem, could you give us step-by-steps as to how to replicate the problem? Bear in mind I don't have a yahoo ID and can't sign into the website.
cr3ative
Bookmarks