Return to Snippet

Revision: 34822
at October 28, 2010 18:06 by mikael12


Initial Code
function openWindow(url,w,h,sb) {
    newWindow = window.open(url, '', 'width='+w+'px,height='+h+'px,left=0,top=0,resizable=1,scrollbars='+sb);
    newWindow.focus();
}

Initial URL


Initial Description


Initial Title
Window open with custom dimension

Initial Tags


Initial Language
JavaScript