Window : Window Object « Window « JavaScript Tutorial

JavaScript Tutorial
1. Language Basics
2. Operators
3. Statement
4. Development
5. Number Data Type
6. String
7. Function
8. Global
9. Math
10. Form
11. Array
12. Date
13. Dialogs
14. Document
15. Event
16. Location
17. Navigator
18. Screen
19. Window
20. History
21. HTML Tags
22. Style
23. DOM Node
24. Drag Drop
25. Object Oriented
26. Regular Expressions
27. XML
28. GUI Components
29. Dojo toolkit
30. jQuery
31. Animation
32. MS JScript
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript Tutorial » Window » Window Object 
19. 2. 1. Window

The Window object is a JavaScript object created when a , , or tag is encountered.

Instances of this object can also be created by using the Window.open() method.

Methods/PropertiesDescription
alertLoads an alert dialog box with the text string passed.
backLoads the previous page in place of the window instance.
blurRemoves the focus from a window.
captureEventsSets the window to capture all events of a specified type.
clearIntervalClears the interval set with the setInterval method.
clearTimeoutClears the timeout set with the setTimeout method.
closeCloses the instance of the window.
confirmDisplays a confirmation dialog box.
disableExternalCaptureDisables external event capturing.
enableExternalCaptureEnables external event capturing for the pages loaded from other servers.
findDisplays a Find dialog box where the user can enter text to search the _current page.
focusAssigns the focus to the specified _window instance.
forwardLoads the next page in place of the window instance.
handleEventInvokes the handler for the event passed.
homeLoads the user's specified home page in place of the window instance.
moveByMoves the window by the amounts specified.
moveToMoves the window to the specified location.
openOpens a new instance of a window.
printInvokes the Print dialog box so the user can print the current window.
promptDisplays a prompt dialog box.
releaseEventsReleases the captured events of a specified type.
resizeByResizes the window by the specified amount.
resizeToResizes the window to the specified size.
routeEventPasses the events of a specified type to be handled natively.
scrollScrolls the document in the window to a specified location.
scrollByScrolls the document in the window by a specified amount.
scrollToScrolls the document, both width and height, in the window to a specified location.
setIntervalInvokes a function or evaluates an expression every time the number of milliseconds has passed.
setTimeoutInvokes a function or evaluates an expression when the number of milliseconds has passed.
stopStops the current window from loading other items within it.
closedSpecifies if the window instance has been closed.
defaultStatusIs the default message in the window's status bar.
documentReferences all the information about the document within this window. See the Document object for more information.
framesReferences all the information about the frames within this window. See the Frame object for more information.
historyReferences the URLs the user has _visited.
innerHeightContains the height of the display area of the current window in pixels.
innerWidthContains the width of the display area of the current window in pixels.
lengthRepresents the number of frames in the current window.
locationContains the current URL loaded into the window.
locationbarReference to the browser's location bar.
menubarReference to the browser's menu bar.
nameName of the window.
openerContains the name of the window from which a second window was opened.
outerHeightContains the height of the outer area of the current window in pixels.
outerWidthContains the width of the outer area of the current window in pixels.
pageXOffsetContains the x-coordinate of the current window.
pageYOffsetContains the y-coordinate of the current window.
parentReference to the upper most window that is displaying the current frame.
personalbarReference to the browser's personal bar.
scrollbarsReference to the browser's scroll bars.
selfReference for the current window.
statusReference to the message in the window's status bar.
statusbarReference to the browser's status bar.
toolbarReference to the browser's tool bar.
topReference to the upper most window that is displaying the current frame.
windowReference for the current window.


When using the close() and open() methods, you must take the instance's name when called within an event handler.

<html>
    <head>
    <script language="JavaScript">
    <!--
    function openWin(){
      var myBars = 'directories=no,location=no,menubar=no,status=no';
      myBars += ',titlebar=no,toolbar=no';
      var myOptions = 'scrollbars=no,width=400,height=200,resizeable=no';

      var myFeatures = myBars + ',' + myOptions;

      var myReadme = "This is a test";

      var newWin = open('', 'myWin', myFeatures);

      newWin.document.writeln('<form>');

      newWin.document.writeln('<table>');
      newWin.document.writeln('<tr><td>Readme');
      newWin.document.writeln('</td></tr>');
      newWin.document.writeln('<tr valign=TOP><td>');
      newWin.document.writeln('<textarea cols=45 rows=wrap=SOFT>');
      newWin.document.writeln(myReadme + '</textarea>');
      newWin.document.writeln('</td></tr>');
      newWin.document.writeln('<tr><td>');
      newWin.document.writeln('<input type=BUTTON value="Close"');
      newWin.document.writeln(' onClick="window.close()">');
      newWin.document.writeln('</td></tr>');
      newWin.document.writeln('</table></form>');

      newWin.document.close();
      newWin.focus();
    }
    -->
    </script>
    </head>
    <body>
    <form>
      <b>Click the following button to open a new window: </b>
      <input type=BUTTON value="Open" onClick='openWin()'>
    </form>
    </body>
    </html>
19. 2. Window Object
19. 2. 1. Window
19. 2. 2. window.alert()
19. 2. 3. window.back()
19. 2. 4. window.captureEvents()
19. 2. 5. window.clearInterval()
19. 2. 6. window.clearTimeout()
19. 2. 7. window.defaultStatus
19. 2. 8. window.disableExternalCapture()
19. 2. 9. window.document
19. 2. 10. window.enableExternalCapture()
19. 2. 11. window.find()
19. 2. 12. window.focus()
19. 2. 13. window.forward()
19. 2. 14. window.frames
19. 2. 15. window.frames.length
19. 2. 16. window.home()
19. 2. 17. window.innerHeight
19. 2. 18. window.innerWidth
19. 2. 19. window.length
19. 2. 20. window.location
19. 2. 21. window.locationbar
19. 2. 22. window.menubar
19. 2. 23. window.moveBy()
19. 2. 24. window.moveTo()
19. 2. 25. window.name
19. 2. 26. window.onBlur
19. 2. 27. window.onDragDrop
19. 2. 28. window.onError
19. 2. 29. window.onFocus
19. 2. 30. window.onLoad
19. 2. 31. window.onMove
19. 2. 32. window.onResize
19. 2. 33. window.onUnLoad
19. 2. 34. window.open()
19. 2. 35. window.opener
19. 2. 36. window.outerHeight
19. 2. 37. window.outerWidth
19. 2. 38. window.pageXOffset
19. 2. 39. window.pageYOffset
19. 2. 40. window.parent
19. 2. 41. window.personalbar
19. 2. 42. window.print()
19. 2. 43. window.prompt()
19. 2. 44. window.releaseEvents()
19. 2. 45. window.resizeBy()
19. 2. 46. window.resizeTo()
19. 2. 47. window.routeEvent()
19. 2. 48. window.scroll()
19. 2. 49. window.scrollbars
19. 2. 50. window.scrollBy()
19. 2. 51. window.scrollTo()
19. 2. 52. window.self
19. 2. 53. window.setInterval()
19. 2. 54. window.setTimeout()
19. 2. 55. window.status
19. 2. 56. window.statusbar
19. 2. 57. window.stop()
19. 2. 58. window.toolbar
19. 2. 59. window.top
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.