Hi, I'm using the following code to open one html page as a popup while on a different html page:
<SCRIPT language="JavaScript">
function load() {
var load = window.open('stereo_camera_platform_details.html','','scrollbars=yes,resizable=yes,fullscreen=yes,toolbar=no,location=no,status=no,menubar=no');
}
</script>
<a href="javascript:load()"><strong><font color="#7C0019">
<FONT FACE="arial" SIZE="2" COLOR="#7C0019" onmouseover="this.style.color='#3300FF'" onmouseout="this.style.color='#7C0019'">
CLICK HERE</font></strong></a> <font color="#000000">
for a step-by-step explanation.
In one case, I'd like to modify the above code so that when the popup window is opened, the user is taken to a specific place on the html page instead of being at the beginning of the page. Is there a way to do that? I assume some kind of code would have to be embedded in the popup html and referenced in the code shown above.
Thanks,
Bill
<SCRIPT language="JavaScript">
function load() {
var load = window.open('stereo_camera_platform_details.html','','scrollbars=yes,resizable=yes,fullscreen=yes,toolbar=no,location=no,status=no,menubar=no');
}
</script>
<a href="javascript:load()"><strong><font color="#7C0019">
<FONT FACE="arial" SIZE="2" COLOR="#7C0019" onmouseover="this.style.color='#3300FF'" onmouseout="this.style.color='#7C0019'">
CLICK HERE</font></strong></a> <font color="#000000">
for a step-by-step explanation.
In one case, I'd like to modify the above code so that when the popup window is opened, the user is taken to a specific place on the html page instead of being at the beginning of the page. Is there a way to do that? I assume some kind of code would have to be embedded in the popup html and referenced in the code shown above.
Thanks,
Bill