eHow launches Android app: Get the best of eHow on the go.
Top 50
Google Gadgets are small objects that offer cool dynamic content that you can create and place on many web pages across the internet. In a nutshell, a Google Gadget is a small XML file that may...
Web pages have grown increasingly more complex since the mid-'90s when you could learn how to make one in a day or two. Now, there are hundreds of technologies competing for your attention. ...
The eHow widget is a great tool to promote your articles. If you have a blogspot, you will learn how to add the eHow widget to your blog in just a few simple steps.
Browser implementations of JavaScript can be very forgiving when it comes to executing JavaScript code. This can come back to haunt you later when the same script will run fine in Internet...
If you belong to Facebook you will want to increase your networking power by letting people know you're there and by giving them a link to your Facebook page. One way to do this is to make a...
JavaScript is an integral part of web development regardless if you code with Microsoft ASP.Net tools, PHP, JSP, or other development environments. If you improve your JavaScript techniques, your...
Slow loading times are annoying and can kill a website even it has a stunning layout.Web developers and web designers should know that faster loading pages make a better browsing experience, and...
One of the new Spry tools in Adobe Dreamweaver CS4 is the tooltip widget. The Adobe Spry framework uses a combination of CSS and JavaScript to enhance web page features. The tooltip widget is...
Every day, it is getting easier and easier to customize and enhance web pages, blogs, and your personal presence on the web. What will they think of next? Now you can add your very own e-How...
In this eHow you will learn how to add a hit counter to Craigslist. This simple JavaScript will help track potential buyers. Sell your items on Craigslist and avoid the fees associated with...
If you have lost your job and you are having trouble finding a new one it could be that you are lacking in the skills department. Either your old skills have gotten rusty or you need new skills. ...
Java is a programming language created for the Internet. You can use Java to create scripts, animated text and other interesting objects.
JavaScript is an essential bit of programming that allows you to read the text in Web sites you visit online. In fact, you will need to enable JavaScript in your Web browser to read almost any Web...
In this day and age where the average user spends no more then seven seconds on any website, it is a good idea to make sure your average homepage load time is as fast as possible. Here are some...
I was writing an article and tried to save it. I received the “No html or JavaScript is allowed.” message no matter what I tried. I was using Internet Explorer 7 with Windows XP. This is what I...
A "mouse-over" effect occurs when a user moves the mouse pointer onto an image. When the pointer rests on the image, it changes to something else. This is especially useful for navigation...
A JavaScript image rollover is an interesting group of HTML and JavaScript code; when a website user points at a picture, another image takes its place. When the user moves the mouse away from the...
A JavaScript cycling banner is an interesting group of HTML and JavaScript code; it allows any number of images to continuously cycle, such as banner advertising ads. After finding the pictures...
When websites employ right click impediment scripts, thus disabling the ability to use the mouse's dropdown menu, it's usually to prevent visitors from saving images. It's frustrating, however, if...
When you’re working on a clients site or your own it is always good to see how it looks to a search engine spider/bot. It is one of the first things I do when I finish developing a website or when...
JavaScript is a cool programming language (sort of) that works with HTML. It allows websites to be much more interactive and dynamic, with things like pull-down menus, mouseovers, cookies,...
It has become significantly easier over the past five years for a company or other organization to establish a presence on the Internet, to the point that the average consumer simply assumes that...
JavaScript, originally called Live Script by Netscape who sponsored it, is a versatile client-side scripting language supported by most Web browsers. The current international standard JavaScript...
Javascript allows for interactive elements on a website to display in your browser window. Most major Internet browsers already have Javascript installed. However, it needs to be enabled for...
The Universal Coordinated Time or Coordinated Universal Time (UTC, not "UCT" or "CUT") is the new name for the old GMT (Greenwich Mean Time) standard. It is common to use...
Library items are reusable snippets of code that can be added to pages in Adobe Dreamweaver. A single copy of the Library item is used on numerous pages. When the Library item is updated, all the...
With Dreamweaver 3, you can specify "behaviors" (something you want to have happen, such as a sound playing), and events (the "trigger" that launches the action, such as moving the mouse over an...
A meta tag or JavaScript will enable you to automatically redirect users to from one site to another.
JavaScript, the language that interacts with HTML elements and many Web browsers, can be activated on Netscape with just a click. JavaScript can be the way to view dynamic-looking content on your...
JavaScript is a popular programming language used by many Web sites to create dynamic interaction with the user. With Firefox, you've got the option to enable or disable JavaScript. Keep in mind,...
JavaScript is a powerful Web scripting tool that allows Web developers to create dynamic Web pages that can change before the viewer’s eyes. JavaScript can be hard to learn, however. Follow this...
JavaScript is a powerful web scripting tool which gives web developers options to create dynamic web pages that can change before the viewer’s eyes. JavaScript can be very hard to learn however,...
JavaScript is a popular, powerful web scripting language, whose programs can be stored in files and can be used together. For instance, one file can include many frequently used functions and the...
JavaScript allows you to dynamically write text onto the page, using the document.write and document.writeln functions.
Variables in JavaScript, as in any programming language, hold the numbers, strings, and other values used by a program. They are declared using the var command.
JavaScript, like all programming languages, allows the programmer to specify that different things be done depending on the situation. This is the If-Then-Else, or If-Else construct. In JavaScript...
JavaScript's switchstatement allows you to specify different actions to be taken based on different values of a variable or expression. Whereas the if statement allows only two alternatives, for...
Alert boxes are useful for displaying quick informational messages or warnings. They are displayed using JavaScript's alert function.
Confirm boxes are a convenient way to give a web visitor a simple choice: to accept or to decline something. They are displayed using the JavaScript confirm function.
One of the easiest ways to create an interactive web page is to ask visitors to supply some information for the web page to manipulate in some way. In JavaScript, this can be done using the prmopt...
Functions--named groups of statements that can be "called" or "invoked"--lie at the heart of JavaScript. Functions can be given special inputs, called "parameters" or "arguments", which control...
JavaScript, like all programming languages, supports loops or repetition, in its case with the for statement. The for statement in JavaScript comes in two flavors: one loops over values, the other...
The while JavaScript statement is an alternative to for for looping, in this case until some condition fails to be satisfied.
Normally JavaScript loops run as long as some condition is satisfied. The break statement allows the programmer to break out a loop immediately and unconditionally. It is also used to terminate...
The JavaScript continue statement offers an easy way to stop the current iteration of a loop and start a new one. In other words, it skips any remaining statements in a loop body--where a for loop...
Arrays are one of the basic JavaScript datatypes, along with numbers, strings, objects, and functions. JavaScript arrays hold a collection of values, each associated with a numerical index or...
The onClick event is triggered, or fired, whenever an HTML element on a page is clicked by the user. By defining an onClick handler on an element, the web designer can specify a specific action to...
Sometimes, it makes sense to wait until all the text, images, videos and sounds are loaded onto a web page before attempting to run scripts. For instance, scripting commands right in the BODY...
As part of the Internet's "point and click" appeal, the onMouseOver event in JavaScript interacts with a visitor based on where he points the mouse cursor. It's a great way to display messages,...
A great way to automate tasks in JavaScript is to use its onSubmit event. With this event, you can have a web browser validate information submitted through a form before it reaches you. With the...