|
Open new browser window in Full Screen Javascript Help
This is what i came up with. It works in opening a new browser window in full screen. However, i wanted something that will open a new window in full screen completely such as what F11 does. I'm not sure if its possible. So any comments regarding this is appreciated.
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}
</script>
</HEAD>
<BODY>
<a href="javascript:void(0);" onClick="fullScreen('full-screen.html');">Open Full Screen Window</a>
</body>
|