Free Programming E-Books
Free download ebooks on computer and programming | |||
Free Ebook Computer ProgrammingFree Ebook Computer Programming : Introduction to Javascript.pdf Publisher : Stefan Koch Pages :74 Format :pdf Size :1.0 MB Upload date :11-30-05 Table of contentComing soon Other HOT and Free ebooks!!Coming Soon Free Ebook Computer Programming on Javascript: Voodoo's Introduction to Javascript.pdfCreating windowsOpening new browser windows is a great feature of JavaScript. You can either load a new document (for example a HTML-document) to the new window or you can create new documents (on-the-fly). We will first have a look at how we can open a new window, load a HTML-page to this window and then close it again. The following script opens a new browser window and loads a meaningless page:
<html>
<head>
<script language="JavaScript">
<!-- hide
function openWin() {
myWin= open("bla.htm");
}
// -->
</script>
</head>
<body>
<form>
<input type="button" value="Open new window" onClick="openWin()">
</form>
</body>
</html>
Download free ebook : Voodoo--Introduction_to_Javascript.pdf
Previous Part Previous part of free ebook Next Part Next part of free ebook | |||