Forum Moderators: not2easy
In my head tag I coded:
<SCRIPT LANGUAGE="JavaScript">
<!-- //
function slide_show(){
window.open("slideShow.htm", "_self", "fullscreen=yes");
}
// -->
</SCRIPT>
In the body I coded:
<form>
<input type="button"
Value="Click here"
onClick="slide_show()">
</form>
Everything else works as expected: I don't get any Run Time errors and pressing the "Click here" button brings up my HTML slide show in the same window.