|
JavaScript Windows
Whatever your feelings about popup windows may be, you must admit they can be very useful when used in the appropriate setting. Most of us are familiar with setting the target of a link to "_new" to spawn a secondary browser; in this tutorial, I shall discuss using JavaScript to facilitate the launching of windows. Let's just say things can get a lot more interesting that way.
JavaScript can help load 3 kinds of windows:
-Regular secondary window
-Modal window
-DHTML window
Regular secondary window
This is similar to using the target="_new" attribute inside a link, except you get to customize virtually every aspect of the window. The basic command is:
<script>
window.open("http://www.yahoo.com")
</script>
You can configure how this window will appear, by inserting one or more of the below keywords into the method's 3rd parameter:
| width |
height |
toolbar |
resizable |
| scrollbars |
directories |
status |
menubar |
window.open("http://www.yahoo.com","","width=400,height=400") //window with dimensions 400x400
window.open("http://www.yahoo.com","","menubar=1") //window with nothing EXCEPT menubar
window.open("http://www.yahoo.com","","resizable=1,scrollbars=1") //window with scrollbars, resizable
Below I show how to launch a window with dimensions 500x400 and nothing but the status bar through a button:
<script>
function loadwindow(){
window.open("http://www.yahoo.com","","width=500,height=400,status=1")
}
</script>
<form><input type="button" onClick="loadwindow()" value="Load Window"></form>
"status=1" tells the method to display the status bar; "1" is the computer equivalent of "yes". function loadwindow(){ window.open("http://www.yahoo.com","","width=500,height=400,status=1") }
Manipulating the window
Allow me at this point to deviate a bit from the main topic and discuss a few things you can do to a window once its opened. How would you like to use scripting to reload or close a window, even move it around? Thanks to a variety of window methods, you can!1z0-042-70-284
- window.location.reload() //reloads window
-window.close() //closes window
-window.moveTo(x,y) //moves window to specified location
-window.moveBy(x,y) //moves window by specified offset
-window.resizeTo(x,y) //resizes window to specified dimensions
-window.resizeBy(x,y) //resizes window by specified amount
To use these methods on the current window, simply call them as is on the page. You can also use them on the opened window, by following these two steps:
Step 1: When opening a window, assign a variable to it:
mywin=window.open(" http://www.geocities.com ")
Step 1: Use this variable to reference the opened window, then apply the desired method on it:
mywin.location.reload //reload mywin
mywin.moveTo(0,0) //positions window at upper left corner of monitor
Ok, getting back on track...
Modal Window
Modal windows are a fun Internet Explorer specific feature. The window sits "focused" on the page until the user clicks on the close button. The window does not go into the background no matter what (for example, clicking on the main window).
window.showModalDialog("http://www.altavista.com","","dialogWidth:500px;dialogHeight:500px")
Notice how I use dialogWidth and dialogHeight to specify the window's dimension. You also need to specify the unit, which in this case I use px. function loadmode(){ if (document.all) showModalDialog("http://altavista.com") else alert("You need IE to see example") }
DHTML Window
A new type of window is emerging, one I think is worth mentioning. It is now possible to recreate the entire window interface through JavaScript and DHTML. The result is a less intrusive, inline popup window.
Gary Winnick
jobs-Jobserve Australia is the leading job portal for jobs in Australia, New Zealand and Asia
Fuerteventura-holiday villas in Fuerteventura
Business VoIP-Telappliant provides business voip solution for large, medium and small businesses.
VoIP -VoIP Talk provides VoIP Hardware and Software solutions
Experiential marketing-Experiential marketing helps consumers understand your brand
Video production-produce videos, optimise it for video marketing
London Colocation-Adapt offers secured, well managed and environmentally controlled co-location services
marketing news-Digital marketing news every day from Netimperative.
gun safes-Buy cheap gun safes from the safe shop
weight loss supplements-Herbal life supplements to lose weight quickly. See the videos for more information
World Phone-Cellhire is the leading provider in International cell phones to buy or rent. Rent international cellular phones for use in Europe, Japan and Korea. GSM phone rental and data card rental
Cheap Motorcycle Insurance-For the best deal on cheap motorcycle insurance then click here. It only takes a few minutes so why not see how much money you can save on motorcycle insurance with MCE Insurance.
School Website-School Website is the UK's leading provider of web design and development for schools.
Motor Trade Insurance-Trade Plan Insurance are industry leaders providing low cost motor trade insurance with excellent service for over two decades.
Accident Claims-Pattinson and Brewer has over one hundred years’ experience in winning compensation for accident injuries, industrial disease and medical accident claimants.
Mobile Field Shelters-Chart Stables provide Mobile Field Shelters that can be supplied on either timber or metal skids, allowing the horse shelter to be moved freely around the paddock or to a different location.
music production schools-Alchemea music production school and audio courses
house plans-house plans and home extension designs
international market research-international market research archive and articles
cosmetic surgery-Marcus Landauer cosmetic surgery
chef uniform-chef uniforms from simonjersey.com
Women’s fitness clothing-Women’s sportswear and fitness clothing
housing associations-housing associations and shared ownership in london
Office Space - FREE SEARCH FOR THE BEST SERVICED OFFICE SPACES IN LONDON
Credit Card-When you take out a Virgin Credit Card, you get more than just a nice piece of plastic.
data centre-Adapt is the leading data centre service provider in London
Cheap Traders Insurance-Trade Plan Insurance are industry leaders providing cheap traders insurance with excellent service for over two decades.
house designs-house designs and extension plans - Architectyourhome.co.uk
breast enlargement-Breast enlargement surgery procedure
Yoga wear and clothing-clothing and ladies yoga wear
|