A dynamic 5 star rating script that can be used along with a server-side language and AJAX to allow visitors to submit their vote in an interactive manner.
Dynamic countdown script JavaScript / Date and Time
Dynamic Countdown script belongs to the first type of count down script that lets you count down to relative events of a future date/time. This future date, while the same for everyone, occurs differently depending on the time zone they're in (ie: Christmas, your mom's birthday, April 1st 2015 etc). This script is extremely flexible- you can customize exactly how to display the output, or even specify a custom action to perform at the end of the countdown (ie: go to another page), by passing in your own custom format function.
Dynamic Ajax Content JavaScript / AJAX
This script uses Ajax to enable you to load external pages into a DIV without having to reload the browser or use IFRAMES. If your external pages reference any external .css or .js files for styling, this script can also load and apply them to the page on demand.
SmartWebby's Guide to Simple Dynamic HTML (DHTML) JavaScript / DHTML and DOM
This javascript guide is especially for those who are trying their best to learn DHTML by dissecting code written by others and for people who don't know much about programming but are interested in making their web sites look Dynamic with simple add-ons.
Check All/Clear All links for dynamic check-boxes (IE4+ & NN4+) JavaScript / DHTML and DOM
In forms when using check boxes for a list of records that is generated dynamically (example: display of messages in your yahoo or hotmail inbox) you might want a simple feature of checking or clearing all the check boxes related to those records before deleting or moving. Use this simple script to do just so.
Ajax Rotating Includes Script JavaScript / AJAX
This script lets you input a list of external pages for the script to choose and selectively include one onto the current page, using Ajax. You can choose to display a different file for each day of the week, month, or randomly.
Ajax Tabs Content script JavaScript / AJAX
This tab content script uses Ajax to let you display a selection of external content on your page inside a DIV and via CSS tabs! We got our inspiration for this script from Yahoo's new homepage, which employs such a concept to show news in an organized fashion.
No Right Click JavaScript / Event Handling
We will be using a normal no right clicking script for this tutorial.
This is a common script with a popup that you can add your name to.
onMouseover? What's This? JavaScript / Event Handling
Well, its time to try out your first javascript. This one is nice because we don't have to deal with adding the script tag. This little script will write something of your choice to the browser's status bar when you move your mouse over a link.
Ajax Includes Script JavaScript / AJAX
This script uses Ajax (DHTML interacting with the server) to let you dynamically include the contents of an external page onto the current document.
Binary Clock JavaScript / Miscellaneous
Hours, minutes and seconds java script clock, with the twist that the time is displayed in binary! An unusual script, that gives a nice twist to the standard java script clock. The only down side is that you need to understand binary to read the time.
Cascading Menu Script Explained JavaScript / Menus and Buttons
Ever wanted to follow a detailed walk-through of a sophisticated JavaScript program? Well get your hiking boots on and join us for a stroll through the entire length of Aaron Prenot's cascading menu script.
Functions JavaScript / Getting Started
Sometimes instead of just adding your javascript to the page and having the browser perform the tasks as soon as the script is read, you might want your javascript to be performed only upon the detection of a certain event. A function is a block of code which can be called from any point in a script after it has been declared. It is basically a compartmentalized JavaScript designed to accomplish a single task.