M
Mica Cooper
Hi,
I have a series of Select menus on a page. I am trying to allow the user to
click on the Select title and have it popup a help window. This works fine
with the following code except that all the Select choices are lost.
<A
HREF="javascript:location='menu.jsp';window.open('menuhelp.jsp?menuID=5','me
nuhelp',)">MenuTitle</A>
I saw an example of a popup on a website that did not lose the menu choices.
This code never calls the javascript function and I can't figure out why. I
know it does not reach the function because it never prints the
out.println("popUp("+page+")");
<A HREF="javascriptopUp('menuhelp.jsp?menuID=5', event)">MenuTitle</A>
function popUp(page,evt){
out.println("popUp("+page+")");
win2 = window.open(page,'pop',"width=400,height=300");
opened = true;
win2.focus();
}
My goal is to get a popup that does not lose my menu choices. Any help is
greatly appreciated.
Thanks,
Mica Cooper
PS. My environment for testing is IE 6.0.2800 with Resin 2.0.3 for my JSP
container on Windows 2000.
I have a series of Select menus on a page. I am trying to allow the user to
click on the Select title and have it popup a help window. This works fine
with the following code except that all the Select choices are lost.
<A
HREF="javascript:location='menu.jsp';window.open('menuhelp.jsp?menuID=5','me
nuhelp',)">MenuTitle</A>
I saw an example of a popup on a website that did not lose the menu choices.
This code never calls the javascript function and I can't figure out why. I
know it does not reach the function because it never prints the
out.println("popUp("+page+")");
<A HREF="javascriptopUp('menuhelp.jsp?menuID=5', event)">MenuTitle</A>
function popUp(page,evt){
out.println("popUp("+page+")");
win2 = window.open(page,'pop',"width=400,height=300");
opened = true;
win2.focus();
}
My goal is to get a popup that does not lose my menu choices. Any help is
greatly appreciated.
Thanks,
Mica Cooper
PS. My environment for testing is IE 6.0.2800 with Resin 2.0.3 for my JSP
container on Windows 2000.