FreshmenProgrammer
Programmer
Thank you for helping out! I am having troubles with removing all my toolbars onLoad using a resizable=off. Is it possible to do that if you open the window with href without using javascript to open the window. This is how I am opening the window and thats my javascript in the page it's opening.
Like if you open a window like this
How can I do a resizable=off in an onLoad
Code:
<a href="[URL unfurl="true"]http://aaa.jsp"[/URL] target="_blank" resizable="off">aaa</a>
function setResize() {
<!--
document.myForm.a.focus();
window.resizeTo(310, 170);
window.moveTo((screen.width-310)/2,(screen.height-170)/2);
window.resizable(0);
//-->
}
Like if you open a window like this
Code:
<a href="#" onClick="javascript:window.open('[URL unfurl="true"]https://aaa.com',[/URL]
'Login','height=170,width=310,resizable=off');">aaa</a><br/>
How can I do a resizable=off in an onLoad