andrewsmithy
Mar 19 2005, 06:08 AM
JavaScript Slideshow TutorialI'm going to show you how to make a impressive JavaScript slideshow. First, you're probably asking: why would I want to make a slideshow in JavaScript? There are a number of reasons. First, you don't have to build a new HTML page for each picture. Secondly, the page will load much faster because the of the compactness of the page. Ok let's get started with this example. First we'll add a <script> tag in the <head> of our HTML document. In that script tag we will build the following: CODE first = 1; last = 4; current = 1; function nextPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; // Show next picture, if last, loop back to front if (current == last) { current = 1; } else { current++ } object = document.getElementById('slide' + current); object.style.display = 'block'; }
function previousPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; if (current == first) { current = last; } else { current--; } object = document.getElementById('slide' + current); object.style.display = 'block'; }
First, I want you to look at the variables. first describes the first picture id, which is 1; last defines the last picture, and current holds the index of the current picture. The function nextPicture() hides the currently displayed picture, and displays the next picture using CSS controls. The function previousPicture() is almost exactly the same as nextPicture() except that it travels back one picture. Notice that current variable holds the current picture index. We are going to make this page styled through CSS. Here is my CSS code. you can change this to whatever you want. Put this in the <style> tag of your <head> tag. CODE .slideShow { background-color: #ebebeb; text-align: center; margin-bottom: 10px; padding: 5px; } .slides { position: relative; z-index: 1; display: none; } .setTitle, .slideTitle { font-family: "Franklin Gothic Book", Arial, Helvitica, sans-serif; } .setTitle { color: #995a01; font-size: 14px; font-weight: bold; } .slideTitle { color: #666666; font-size: 12px; } .controls { position: relative; z-index: 10; } #slide1 { display: block; } img { border: outset 1px #999999; }
Ok, now we are going to put our pictures in our page. We do this through standard HTML. I'll explain this part after we go over the code. CODE <div class="slideShow"> <div class="setTitle">Jaguars Track and Field Photos</div> <div id="slide1" class="slides"> <div class="slideTitle">Picture 01</div> <img src="pic01.jpg" height="300" width="400" border="0" /> </div> <div id="slide2" class="slides"> <div class="slideTitle">Picture 02</div> <img src="pic02.jpg" height="300" width="400" border="0" /> </div> <div class="controls"> <a href="javascript:previousPicture()" style="margin: 10px;">« Previous</a> <a href="javascript:nextPicture()" style="margin: 10px;">Next »</a> </div> </div>
This code goes in the <body> tag. I just put two slides on here, but you can easily add more. Here is the format for adding more slides. You place another <div> inside of the <div class="slideShow"> like this: CODE <div id="slideShow"> ... <div id="slide10"> <div class="slideTitle">Your Slide Title</div> <img src="pic10.jpg" height="600" width="430" border="0" /> </div> .... </div>
Ok, when all of this is put together, you have a quite nice Javascript-enhanced slideshow! Here is the code for the whole page. Remember to edit the variable last to be the same as your last slide number. CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Slideshow</title> <script language="JavaScript" type="text/javascript"> //<!-- //<![CDATA[ first = 1; last = 4; current = 1; function nextPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; // Show next picture, if last, loop back to front if (current == last) { current = 1; } else { current++ } object = document.getElementById('slide' + current); object.style.display = 'block'; }
function previousPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; if (current == first) { current = last; } else { current--; } object = document.getElementById('slide' + current); object.style.display = 'block'; } //]]> // --> </script> <style type="text/css"> <!-- .slideShow { background-color: #ebebeb; text-align: center; margin-bottom: 10px; padding: 5px; } .slides { position: relative; z-index: 1; display: none; } .setTitle, .slideTitle { font-family: "Franklin Gothic Book", Arial, Helvitica, sans-serif; } .setTitle { color: #995a01; font-size: 14px; font-weight: bold; } .slideTitle { color: #666666; font-size: 12px; } .controls { position: relative; z-index: 10; } #slide1 { display: block; } img { border: outset 1px #999999; } --> </style> </head> <body> <div class="slideShow"> <div class="setTitle">Your Title</div> <div id="slide1" class="slides"> <div class="slideTitle">Picture 01</div> <img src="pic01.jpg" height="300" width="400" border="0" /> </div> <div id="slide2" class="slides"> <div class="slideTitle">Picture 02</div> <img src="pic02.jpg" height="300" width="400" border="0" /> </div> <div id="slide3" class="slides"> <div class="slideTitle">Picture 03</div> <img src="pic03.jpg" height="300" width="400" border="0" /> </div> <div id="slide4" class="slides"> <div class="slideTitle">Picture 04</div> <img src="pic04.jpg" height="300" width="400" border="0" /> </div> <div class="controls"> <a href="javascript:previousPicture()" style="margin: 10px;">« Previous</a> <a href="javascript:nextPicture()" style="margin: 10px;">Next »</a> </div> </div> </body> </html>
There you go! If you have any problems, suggestions, or questions please reply to this post. If you like this code, please rate me! Thanks
Reply
Trap FeedBacker
Dec 29 2007, 01:49 PM
adding backgroundimage slide show.
Javascript Slideshow Tutorial
What would be the coding of adding backgroundimage slide show in javascript? -shiv
Reply
karlosvalencia
Jan 5 2008, 05:06 AM
QUOTE(andrewsmithy @ Mar 19 2005, 01:08 AM)  <span style='font-size:14pt;line-height:100%'>JavaScript Slideshow Tutorial</span> I'm going to show you how to make a impressive JavaScript slideshow. First, you're probably asking: why would I want to make a slideshow in JavaScript? There are a number of reasons. First, you don't have to build a new HTML page for each picture. Secondly, the page will load much faster because the of the compactness of the page. Ok let's get started with this example. First we'll add a <script> tag in the <head> of our HTML document. In that script tag we will build the following: CODE first = 1; last = 4; current = 1; function nextPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; // Show next picture, if last, loop back to front if (current == last) { current = 1; } else { current++ } object = document.getElementById('slide' + current); object.style.display = 'block'; }
function previousPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; if (current == first) { current = last; } else { current--; } object = document.getElementById('slide' + current); object.style.display = 'block'; } First, I want you to look at the variables. <span style='font-family:Courier'>first</span> describes the first picture id, which is 1; <span style='font-family:Courier'>last</span> defines the last picture, and <span style='font-family:Courier'>current</span> holds the index of the current picture. The function <span style='font-family:Courier'>nextPicture()</span> hides the currently displayed picture, and displays the next picture using CSS controls. The function <span style='font-family:Courier'>previousPicture()</span> is almost exactly the same as <span style='font-family:Courier'>nextPicture()</span> except that it travels back one picture. Notice that <span style='font-family:Courier'>current</span> variable holds the current picture index. We are going to make this page styled through CSS. Here is my CSS code. you can change this to whatever you want. Put this in the <style> tag of your <head> tag. CODE .slideShow { background-color: #ebebeb; text-align: center; margin-bottom: 10px; padding: 5px; } .slides { position: relative; z-index: 1; display: none; } .setTitle, .slideTitle { font-family: "Franklin Gothic Book", Arial, Helvitica, sans-serif; } .setTitle { color: #995a01; font-size: 14px; font-weight: bold; } .slideTitle { color: #666666; font-size: 12px; } .controls { position: relative; z-index: 10; } #slide1 { display: block; } img { border: outset 1px #999999; } Ok, now we are going to put our pictures in our page. We do this through standard HTML. I'll explain this part after we go over the code. CODE <div class="slideShow"> <div class="setTitle">Jaguars Track and Field Photos</div> <div id="slide1" class="slides"> <div class="slideTitle">Picture 01</div> <img src="pic01.jpg" height="300" width="400" border="0" /> </div> <div id="slide2" class="slides"> <div class="slideTitle">Picture 02</div> <img src="pic02.jpg" height="300" width="400" border="0" /> </div> <div class="controls"> <a href="java script:previousPicture()" style="margin: 10px;">« Previous</a> <a href="java script:nextPicture()" style="margin: 10px;">Next »</a> </div> </div> This code goes in the <body> tag. I just put two slides on here, but you can easily add more. Here is the format for adding more slides. You place another <div> inside of the <div class="slideShow"> like this: CODE <div id="slideShow"> ... <div id="slide10"> <div class="slideTitle">Your Slide Title</div> <img src="pic10.jpg" height="600" width="430" border="0" /> </div> .... </div> Ok, when all of this is put together, you have a quite nice Javascript-enhanced slideshow! Here is the code for the whole page. Remember to edit the variable <span style='font-family:Courier'>last</span> to be the same as your last slide number. CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Slideshow</title> <script language="JavaScript" type="text/javascript"> //<!-- //<![CDATA[ first = 1; last = 4; current = 1; function nextPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; // Show next picture, if last, loop back to front if (current == last) { current = 1; } else { current++ } object = document.getElementById('slide' + current); object.style.display = 'block'; }
function previousPicture() { // Hide current picture object = document.getElementById('slide' + current); object.style.display = 'none'; if (current == first) { current = last; } else { current--; } object = document.getElementById('slide' + current); object.style.display = 'block'; } //]]> // --> </script> <style type="text/css"> <!-- .slideShow { background-color: #ebebeb; text-align: center; margin-bottom: 10px; padding: 5px; } .slides { position: relative; z-index: 1; display: none; } .setTitle, .slideTitle { font-family: "Franklin Gothic Book", Arial, Helvitica, sans-serif; } .setTitle { color: #995a01; font-size: 14px; font-weight: bold; } .slideTitle { color: #666666; font-size: 12px; } .controls { position: relative; z-index: 10; } #slide1 { display: block; } img { border: outset 1px #999999; } --> </style> </head> <body> <div class="slideShow"> <div class="setTitle">Your Title</div> <div id="slide1" class="slides"> <div class="slideTitle">Picture 01</div> <img src="pic01.jpg" height="300" width="400" border="0" /> </div> <div id="slide2" class="slides"> <div class="slideTitle">Picture 02</div> <img src="pic02.jpg" height="300" width="400" border="0" /> </div> <div id="slide3" class="slides"> <div class="slideTitle">Picture 03</div> <img src="pic03.jpg" height="300" width="400" border="0" /> </div> <div id="slide4" class="slides"> <div class="slideTitle">Picture 04</div> <img src="pic04.jpg" height="300" width="400" border="0" /> </div> <div class="controls"> <a href="java script:previousPicture()" style="margin: 10px;">« Previous</a> <a href="java script:nextPicture()" style="margin: 10px;">Next »</a> </div> </div> </body> </html> There you go! If you have any problems, suggestions, or questions please reply to this post. If you like this code, please rate me! Thanks This is actually pretty cool. Tested it and works like a charm. Is there any way in java to protect the pictures so they cant be downloaded using right-click once they're displayed?
Reply
games4u
Apr 30 2008, 10:32 AM
QUOTE(FeedBacker @ Dec 29 2007, 07:19 PM)  adding backgroundimage slide show.
Javascript Slideshow Tutorial What would be the coding of adding backgroundimage slide show in javascript?
-shiv The easiest way of background image slideshow is by assigning different backgrounds to different <div> tags. So the following part of above code: HTML <div id="slideShow"> ... <div id="slide10"> Some Text Here... </div> .... </div> can be changed to: HTML <div id="slideShow"> ... <div id="slide10" style="background-image:url(bg_image_10.bmp)"> Some Text Here... </div> .... </div> The style attribute can be given for all <div> tags. And if needed the text in all <div> tags can be same - this creates a background changing effect. I hope that solved your problem
Reply
Recent Queries:--
object.style.display="" - 2.62 hr back.
-
left to right image slide show in javascript - 6.38 hr back.
-
image slide show on button click using javascript - 7.87 hr back.
-
how to make slideshow with javascript - 9.85 hr back.
-
example java slideshow - 10.41 hr back.
-
how to setup a slideshow with javascript and php - 10.60 hr back.
-
making a javascript slideshow - 12.76 hr back.
Similar Topics
Keywords : javascript, slideshow, make, slideshow, javascript
- Java Vs Javascript
(8)
Document.write & Noscript Questions (javascript)
(1) I am trying to use javascript to include a stylesheet depending on the user's resolution. The
HTML CODE <head> <meta http-equiv="Content-Type" content="text/html;
<?php echo _ISO; ?>" /> <?php if ($my->id) {
initEditor(); } ?> <?php mosShowHead(); ?>
<noscript><link rel="stylesheet" type="text/css"
href="http://www.highimpactart.org/templates/_HighImpactArt_/1024/1024.css"
/></noscript> <script type="....
Flash And Javascript Interaction
swfobject js questions (1) I don't know if anyone on here is familiar with this script. You can check it out here .
Basically it's a script that is supposed to give you javascript control over a flash object. I
am using it for a flv player. My question is this. I would like to display the current file's
title in a span element on the page, but the function described to gather the information for the
current file doesn't seem to work for me. The function, as outlined on on this page looks
like this: CODE function getUpdate(typ,pr1,pr2,swf) { if(typ == ....
Javascript Object Node Referencing Help
(5) I've got two buttons with an onclick event to set the hidden input field to a certain value then
continue submitting the form. I have more than one form on display on the page and I don't want
to use ids. Is there a way I can reference it from the button/button onclick event? the forms is
laid out like this echo" "; echo" "; echo" Edit "; echo" Delete "; echo" ";
So basically the idea is to fire off new_modify function and start referencing the hidden input type
with name of do and set it to the supplied argument then continue submitting t....
Capturing Username Of Computer
using javascript, is it possible? (3) I wondering if it is possible to try and make a java script to get the computer username and log it?
/huh.gif" style="vertical-align:middle" emoid=":huh:" border="0" alt="huh.gif" /> edit Topic
title ....
Is It Possible To Create A Web Based Mmo In Javascript?
And could there be free movement without reloading the page? (4) I would like to get some information before launching myself to the JS libraries. Is it possible to
load maps or images and with the press of a button "scroll" or move the image inside some kind of
window up, down, left or right? It would be like scrolling an image sideways, upwards or downwards.
I would also like to know if multiple connections can be made and lets say there was a user
standing in the location (127, 160) of the map, would there be the possibility of loading the image
of that player? Maybe with database connections and storing their information there?....
Javascript Error
Error "missing ) in parenthetical" with JSON statment (2) Hello! I'm trying to execute following code: CODE a=new Array();
a=eval("("+responseText+")"); for (prop in a) {
e=document.getElementById(prop) if (e) {e.innerHTML=a[prop]}
and I recieve error in CODE a=eval("("+responseText+")");
what's wrong? responseText it's result from php2js() function. Apache 2.2.6/PHP5.2.5/MySQL
5.0.45....
Special Wii Javascript
New Javascript Objects for Wii (2) I found on Nintendo.com a while back some new javascript objects dealing with the Wii Remote. I
have decided to post a link to these new Javascript objects here. Wii javascript These new
Javascripts can detect whether or not a Wii Remote is enabled, the position of the pointer, and even
the tilt of the remote. It also has an object that determines the keypress of the Wii. These can be
very useful for Wii sites. Maybe have a menu load with AJAX when the remote is tilted. Add button
functionality such as when the A and B button are pressed, the form is submitted. Just....
I`m New To Javascript.
(5) Does anybody know where I can find a good site to teach me more than I already know. I know about
functions and how to set up alert scripts. I really wanna make a counter script.....
Javascript Events Not Working For Ie
(6) I just made this little html file and I used javascript to show which arrows you're pressing. It
just says the key code, but only for the arrows, so it will say "37, 38, 39, 40" if you're
pushing all the arrows. When you let go of the arrows, it won't show that value. It works
perfectly in Firefox, but I can't get it to run in Internet Explorer. The little notification
bar down in the bottom left of the window says there's an error, and it just sits there. All I
used was a function for onKeyDown and onKeyUp on the body, and every 10 milliseconds it sh....
Javascript - What's Your Browser?
(3) Here is the code that i picked up from a Javascript book that will tell you wether you are using
Firefox or Internet explorer. obviously the (navigator.appName ==" browser name ") can be changed
to different browsers. CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 -
Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <title>What's your browser?</title> </head>
<body bgcolor="#FFFFFF"> <h2> <script
language="....
Opera Browser + Javascript + Embeded Sound
Embeded sound works in IE, but not in Opera (0) Hello! Here is the problem. There is an Embed object, created like this: function
createWMPEmbedMarkup(src, id, baseurl) { // For choice, using the DOM instead of a string
// so the caller gets a node. (Its childNode could be used if you don't want the whole p
element) // Then, if markup is needed instead, innerHTML is available. var x =
document.createElement("embed"); x.setAttribute("FileName", src);
x.setAttribute("type", "application/x-mplayer2"); x.setAttribute("AutoStart", "0");
x.setAttribute("id....
Web Applications: J2ee Or Javascript/css/html
(1) I'm currently programming web applications using AJAX/CSS/HTML and they're pretty
cross-browser. However when I heard of this language J2EE I had second thoughts. But I ran into GWT
(Google Web Toolkit) which compiles Java code to Javascript/HTML. With this said, my mind tells me
that Java developers desire to use Javascript/HTML languages to create web applications over Java.
So, which one should I start developing web applications in? Java? or Javascript....
Great Javascript Script Source
Great Javascript script source (2) Are you find great javascript source !!! try this >>> http://www.dynamicdrive.com ....
Help With Javascript Calculator Returning "nan"
(2) Hello all, thought maybe I could get a little help with a problem I was having with some Javascript
on this forum. I recently posted about adding some type of script to my page that calculated a
customers custom computer system price by assigning each form option a dollar value. I have done so,
with a script that seems like it would work, but am having some problems. I feel that I have the
script correctly in place, but when the user selects their computer options a total of "NaN" returns
at the bottom of the page. You can see what I mean here: www.plugcomputers.com/a....
How Do You Make A Javascript Calculator?
in a form (11) Hi, does anyone know how you would make a html form with javascript where it calculates number... i
will demonstrate below to make it more clear what i mean.. i want the form to have like three
buttons, MULTIPLY,DIVIDE. AND RESET.. and than i want it to have the fields where you type in the
numbers and it gives you the answer.. so its Field 1 * OR / Field 2 = Field 3 . does anyone know
how to make this work? i basiaclly want all the three functions to work with the same form. this is
a project grade in my web design class but i need help. Thanks....
Highlight A Word In Javascript. Help!
BBCode (2) Hi, I'm making a forum right now, and i'm having some trouble with BBCodes. I want it so
when they click a button it will add the bbcode and highlight (or place the cursor between) the
code . Let me clarify, I want a button to be clicked, it adds code to the textarea and places the
cursor between the tags. Example: CODE [b] (cursor here) [/b]
[b] | [/b] The cursor is between the two tags. I REALLY appreciate it, i've
search so long with no luck.....
My Little Javascript
Need Some Debugging Help (0) Ok, to start, the purpose of the script. I'm trying to make a script that puts a link on every
page on an Invisionfree forum (IPB 1.3) that takes you to a thread and automatically put in the url
from which you clicked. I already have the whole thing working, but when I go to edit my signature,
it inputs most of the url into the box. It replaces my whole sig with that, so it's a big
problem. The code: CODE This part makes the link on every page. <script
LANGUAGE="JavaScript"> <!--
document.write('<....
Help With Javascript Calculator On My Website Please!
(1) Hello all, As many of you may know my website, www.PlugComputers.com is in the business of building
custom gaming computers. I need some help coding one part of my site and I have never been too good
at javascript. First off, I'm assuming what I am wanting to do would be done with
javascript...my problem is as follows: On our build customization pages (
www.PlugComputers.com/intelschedule.php for example) vistors can go though the page and select
which components they want for their computer. The problem is people are selecting things they
really dont know much a....
A Simple Javascript Help Required
(3) Can somebody help me in creating a very simple javascript.. for example, the following code is
example to delete a row from mysql.. all i want to do is.. that, when i click on delete, it gives a
popup window , asking me if i really want to delete the row.. if i say Yes then it takes the
action.. but if i say no then it takes back.' CODE $result =
mysql_query("select * from comments order by id desc limit 10"); //the while loop
while($r=mysql_fetch_array($result)) { //getting each variable from the
table $id = &....
Javascript
(6) I've lately outlined myself and found out that i'm very well rounded in PHP/SQL, HTML/XHTML,
XML, and Perl. No C/C++, Java, nor Javascript. So. I thought about it, if I can do all of the server
side scripting and such, I need to learn Javascript. Currently, I can do a thing with javascript. I
don't even know the basics of it. I only feeds of other's scripts thats posted in libraries
amonst the net. But lemme get down to the point. This is a plea for help. Does anyone know of a
good, effective Javascript tutorial except WCSchools? Perhaps a place you learn....
Destroying Variables In Javascript
Destroying variables in javascript (7) how do you delete the contents of a variable in javascript? Any ideas?....
Rounded <div> Boxes
JavaScript Help #2 (4) This is my second help post in this Java/JavaScript section. Can someone write/find me a piece of
code that will create rounded boxes? Preferred stuff: Box MUST be customizable using CSS
internal/external stylesheets. The box must be in a shape of a rounded rectangle (make one in
Microsoft Paint if you don't know what that is). A title bar is preferred (rounded or not) but
isn't madatory. Remember: Any help would be appreciated. All codes will be tested and best
code be selected.....
Hiding <div> Boxes With Javascript
Javascript Help #1 (8) This is my first help post in this Java/JavaScript section. Can someone write/find me a piece of
code that will hide boxes? Preferred stuff: There is a bar that has the subtitle of the box
contents. A button on the right side of the bar shows and hides the div box. Contents are in a box
with a border and slides in and out of the bar smoothly and relatively quickly. Box MUST be
customizable using CSS internal/external stylesheets . Any help would be appreciated. All codes
will be tested and best code be selected.....
Javascript : No Right Click Script !@
This script will allow you to protect your source coad ! (11) This script will help you to protect your source code Add this to Section of your site
! HTML <script language=JavaScript> var message="Function Disabled!";
/////////////////////////////////// function clickIE4(){ if
(event.button==2){ alert(message); return false; } } function
clickNS4(e){ if
(document.layers||document.getElementById&&!document.all){ if
(e.which==2||e.which==3){ alert(message); return false; } } }
if (docume....
What's The Relationship Between Javascript And Java
are they the same or different (5) I think most of you always confuse about java and javascript .So I make this topic to talk about it.
Javascript and Java ,they have the same first four letter. Java and Javascript is the two language
is very popular in the web world.Java is the general-purpose programming language that you can
create an application or an applet.Javascript is a script language that looks sort of like java;with
it you can do various nifty things in web pages.They are independent languages ,used for different
purposes.If you are interesting in creating a website you should learn how to w....
I'm Making My Own Javascript Only Rpg :d
earliest beta perhaps (7) Well I randomly decided to make an rpg. So far its all in javascript, and that's how I intend to
keep it. Eventually you will be able to save with a permanent cookie or by getting an encrypted
code. Right now you can only walk around and go to 2 maps. I have used preloading, and the maps load
extremely fast. But there is one problem, maybe you guys could help but I mostly just posted to tell
you guys something /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif"
/>. Well the problem is the character images load extremely slow and i know wh....
One Click Copy And Paste To Clipboard
in simple Javascript (5) I've been search the web for few weeks to see if Java can do one click copy and paste function
to the clipboard and then I can just Ctrl-V the copied "texts." I initially got this idea when I
began to approve hosting application. Instead of writing the same message over and over again, I
decided to make me a page where I can simply copy the code to appropriate answers. And seems like my
laziness is the mother of inventions /laugh.gif' border='0' style='vertical-align:middle'
alt='laugh.gif' /> Instead of doing Ctrl-A, Ctrl-C then Ctrl-V to the post board I started....
Javascript Close Window
Javascript close window (10) Hi does anyone have a code to close the browser window. This code needs to be used to close an
actual full sized window, not a pop-up window.....
Javascript resources?
ie, a book. (9) Hi, I'm trying to learn Javascript. The thing is, I don't have any reference material
around, so I'm gonna need to buy a book or something. Are there any which you would recommend? I
looked on some websites but there are literally hundreds of books of this kind. /blink.gif"
style="vertical-align:middle" emoid=":blink:" border="0" alt="blink.gif" /> (in answer to the
below, sorry sauron, didnt see that one)....
Looking for javascript, slideshow, make, slideshow, javascript
|
|
Searching Video's for javascript, slideshow, make, slideshow, javascript
|
advertisement
|
|