Open menu Link

  • Thread starter Thread starter ruca
  • Start date Start date
R

ruca

Language: ASP.NET with VB.NET

How can I open a little window with a menu when I pass over with mouse on a
link?
I have links and when I pass over I want to open only the choices that
belongs.


I think that I have to use JavaScript and it's not my strongest...

I have this, but opens a big window (I don't want that)

<SCRIPT FOR="mnuLinkQsq" EVENT="onmouseover" LANGUAGE="JScript">
window.open("my.aspx")
</SCRIPT>
 
If you just want to control the size of the window, check out the SDK
documentation. window.open takes an sFeatures argument that allows you to
specify the size of the window you are opening, among other things. If you
don't want a full blown window, you could also just create a new div with
absolute positioning and have it hover over your page, which is what most
drop-down menus will do.
 
Back
Top