Creating Pop up menu in DreamWeaver CS3

Joined
Oct 12, 2009
Messages
1
Reaction score
0
Points
1
I am trying to create a simple pop up menu using the Spry Menu Bar function in DreamWeaver. After playing around with the ul.MenubarHorizontal xxxx thing, my sub menus are not showing anymore when I preview in a browser but showing perfectly in the document window. Can somebody please help? I was working before and I must have clicked on something?!

Thanks
Ray
 
Joined
Feb 26, 2009
Messages
20
Reaction score
1
Points
3
a pop up window is a javascript call
html:
Code:
<a onclick="popup(this.href);return false" href="someLink.aspx">

JS Code:
Code:
function popup(url){
 window.open(url,"someName_popup","toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=602,width=612");
}

Or are you talking about a modal window?
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top