|
1-20 of 63 Miscellaneous sites are shown.
|
|
Adding variables and functions to your scripts
|
|
|
|
|
|
How to say and, or, if, else, for, and while all over again
|
|
|
|
|
|
Adding a password to your page. OK, I finally got around to writing the javascript password protection tutorial. You will see the example script here is pretty straightforward, though it is also pretty easy to get around
|
|
|
|
|
|
Start using more advanced string handling methods to do more with your strings.
|
|
|
|
|
|
A continuation of the string theme which explains the split method.
|
|
|
|
|
|
So, you want to set things to happen after a certain amount of time? Well, the setTimeout function can help you create some nice scripts that will use time delays to make things happen.
|
|
|
|
|
|
Arrays are one way of keeping a program more organized. They allow you to do some things that are difficult without them. Arrays are usually a group of the same variable type that use an index number to distinguish them from each other
|
|
|
|
|
|
Shorten your code detecting objects
|
|
|
|
|
|
JavaScript and Frames. Frames and JavaScript. Sounds like a mess doesn't it? Well, it does make things a bit more complicated. Let's see if we can figure out how to get those frames to work with our scripts.
|
|
|
|
|
|
Use javascript to change 2 frames at the same time
|
|
|
|
|
|
Looking to pull off a few mathematical operations using JavaScript? You`ll need to arm yourself with the Math object.
|
|
|
|
|
|
Round up your brain cells as we explore number rounding in JavaScript!
|
|
|
|
|
|
In this tutorial, I`ll discus both how to use the language attribute, and its merits to your code.
|
|
|
|
|
|
in this tutorial, we`ll examine the new features of JavaScript in 4th+ generation browsers that allow us to alter HTML content on the fly
|
|
|
|
|
|
Using the random method to create random scripts
|
|
|
|
|
|
It is essential that to understand how to determine a browser`s dimensions and document scroll offset coordinates. Only then will it be possible to correctly position an element statically on the page.
|
|
|
|
|
|
The problem of adding properties to a literal - and it`s solution.
|
|
|
|
|
|
The switch statement is basically an enhanced version of the `if-else` statement that is more convenient to use when you have code that needs to choose a path from many to follow.
|
|
|
|
|
|
A robust function, in our view, is one that can accept any number of parameters, as opposed to a `normal` function, where the number of parameters accepted is preset, and cannot be altered.
|
|
|
|
|
|
Don`t worry, two dimensional arrays are very easy to create- it simply requires a little altering in dimension
|
|
|
|
|
|