Hi,
I have a function that opens a popup
<SCRIPT>
function newwindow1(theUrl) {
window.open(theUrl, 'jav', 'width=640,height=320,resizable=no,scrollbars=auto');
}
</SCRIPT>
And a series of hyperlinks in a table that call it that pass a value to theURL
eg <a href="meetingframe.asp?StartTime=08:00:00&RoomID=2&ViewingDate=01/02/2006" title="Room 2 at 08:00 hrs" onclick="newwindow1(this.href);return false;">
I am trying to make to make it so that when the page loads if a meeting has been specified by a hyperlink the popup appears instantly. So far I have tried
<body vlink="blue" alink="blue" onLoad='newwindow1('meetingframe.asp?MeetingID=132');return false;'>
but no popup appears.
Any ideas?
Thanks very much
I have a function that opens a popup
<SCRIPT>
function newwindow1(theUrl) {
window.open(theUrl, 'jav', 'width=640,height=320,resizable=no,scrollbars=auto');
}
</SCRIPT>
And a series of hyperlinks in a table that call it that pass a value to theURL
eg <a href="meetingframe.asp?StartTime=08:00:00&RoomID=2&ViewingDate=01/02/2006" title="Room 2 at 08:00 hrs" onclick="newwindow1(this.href);return false;">
I am trying to make to make it so that when the page loads if a meeting has been specified by a hyperlink the popup appears instantly. So far I have tried
<body vlink="blue" alink="blue" onLoad='newwindow1('meetingframe.asp?MeetingID=132');return false;'>
but no popup appears.
Any ideas?
Thanks very much