JavaScript
  Home arrow JavaScript arrow Page 3 - Controlling Browser Properties with Ja...
Dev Shed Forums 
Administration  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Download TestComplete 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
IBM Developerworks
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVASCRIPT

Controlling Browser Properties with JavaScript
By: Nariman K, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 103
    2004-02-02

    Table of Contents:
  • Controlling Browser Properties with JavaScript
  • Starting at the Top
  • Moving Windows
  • Bar Tales
  • Navigating the Family Tree
  • Location is Everything
  • History Lesson
  • Down to the Document

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    Iron Speed
     
    ADVERTISEMENT

    Virtual Tradeshows by Ziff Davis Enterprise – A Unique Opportunity to Interact with IT Experts, Access Information, and Gain Insight on Today’s Trends in Technology Learn more

    Controlling Browser Properties with JavaScript - Moving Windows
    (Page 3 of 8 )

    You might not know this, but the alert() function you call every time you want a pop-up on your page is actually a method of the Window object. Take a look:


    <script language="JavaScript">
    // pop up alert
    window.alert("I can see you");
    </script>

    There's also a window.confirm() method, which displays a confirmation box with a message and two buttons. Depending on the button you pick, the method returns true or false. Take a look at the next example, which demonstrates:


    <script language="JavaScript">
    // ask a question
    var answer = window.confirm("Parlez-vous Francais?");
     
    // process the response
    if (answer) 
    { window.alert 
    ("Tres bon, comment allez-vous?"); 

    else {
    window.alert ("Illiterate pig!"); }
    </script>

    Finally, the window.prompt() method pops up an input box and stores the user's input in a variable. The following example illustrates:


    <script language="JavaScript">
    // ask for user input
    var name = window.prompt("Enter your screen name");
     
    // print it back
    window.alert ("Welcome, " + name);
    </script>

    You can move a window to the front of the window stack by calling the window.focus() method (remember to use the window name when calling this method, or you won't see anything special happen), and the window.blur() method to move a window to the back of the stack. Consider the following example, which creates a child window and then allows you to move it to the front and back of the window stack using these methods:


    <html>
    <head>
    </head>
    <script language="JavaScript">
    var newWin 
    window.open("windows.html""newWin");
    </script>

    <body>
     
    <a href="javascript:newWin.blur();">Move child window back</a>
    <br>
    <a href="javascript:newWin.focus();">Move child window front</a>
     
    </body>
    </html>

    You can resize a window by calling the window's resizeTo() method, as in the example below:


    <html>
    <head>
    </head>
    <body>
     
    <
    a href="javascript:var test = window.open('', 'test');">
    <b>Open test window</b></a>
     
    <
    p>
     
    <
    b>Resize test window</bto:
     
    <
    ul>
    <li>
    <a href="javascript: test.resizeTo(300, 300);">
    300 x 300
    </a>
    <li>
    <a href="javascript: test.resizeTo(640, 480);">
    640 x 480
    </a>
    <li>
    <a href="javascript: test.resizeTo(800, 600);">
    800 x 600
    </a>
    </ul>
     
    <
    a href="javascript:test.close();">
    <b>Close test window</b></a>
     
    </
    body>
    </html>

    Consider the following example, which allows you to input height and width values into a form, and uses these values to adjust the target window's height and width appropriately:


    <html>
    <head>
    <script language="JavaScript">
    var test 
    window.open('''test');
    function changeSize
    () 
    {
     
    var width=document.forms[0].winwidth.value;
     
    var height=document.forms[0].winheight.value;
     test
    .resizeTo(parseInt(width), parseInt(height));
    }
    </script>

    </head>
    <body>
     
    <form>
    Width 
    <input type="text" size="3" name="winwidth">
     
    Height
    <input type="text" size="3" name="winheight">
     
    <input type="button" 
    onClick="javascript:changeSize()" 
    value="Change Window Size">
    </form>
     
    </body>
    </html>

    More JavaScript Articles
    More By Nariman K, (c) Melonfire


     

       

    JAVASCRIPT ARTICLES

    - Getting Attention with Interactive Effects
    - Interacting with Tooltips and Previews
    - Just-in-Time Information and Ajax
    - Interactive Effects
    - Using Cookies With JavaScript
    - Understanding the JavaScript RegExp Object
    - Controlling Browser Properties with JavaScri...
    - Using Timers in JavaScript
    - Form Validation with JavaScript
    - JavaScript Exception Handling
    - Stringing Things Along
    - Understanding The JavaScript Event Model (pa...
    - Understanding The JavaScript Event Model (pa...
    - An Object Lesson In JavaScript

    Iron Speed



    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway