Multiple Mailer
- Submitted 11/18/2009
JavaScript can help you send an e-mail to anyone on your "list". Just use the pulldown menu to select a recipient, compose your message, and hit 'Send Message' to send it. This too, is another good JavaScript example for all beginners to learn from.
Page Organizer
- Submitted 11/18/2009
Use JavaScript and CSS to hide/show elements on a page thus saving screen space.
Lots Of Info
- Submitted 11/18/2009
This script displays browser, browser version, platform, whether Java is enabled and more to your site's visitors from the visitor's own browser.
Info Table
- Submitted 11/12/2009
JavaScript can write a neat little box to the screen telling the visitor's browser and operating system.
Platform-Page
- Submitted 11/04/2009
Do you maintain a different version of your site for Windows and another for Mac users? Or, when allowing your visitor to download items from your site, would you like to automatically redirect them to the appropriate software download page for their computer? This script does it all, and it's short too!
Manual Frame Break
- Submitted 10/28/2009
Place this scipt on any page to allow visitors to break out of frames with a simple link. Easily choose whether or not to view the page within frames. Cool!
Language
- Submitted 10/28/2009
Redirects a user to the page based on their language. For example, English language user browsers, which report the language as 'en' in most cases, can be redirected to an English page, while Spanish language user browser, which report the language as 'es' in most cases, can be sent to a separate Spanish page. This method works well for redirecting users in all the languages that you set up. Instructions on adding more languages are included in the source code.
Insight Generator
- Submitted 10/28/2009
If you need a profound quote or insight for an upcoming speech, interview, cocktail party or whatever, try the Insight Generator. If you don't like the first generated profundity, click again for a whole new one. Just keep going until you find a quote that suits whatever the occasion requires.
SoftXMLLib
- Submitted 10/28/2009
One of the main problems with manipulating XML files is the compatibility issue across different browsers. The purpose of the SoftXMLLib Library is to solve the problem of creating different XMLHTTP and XMLDOM objects for different browsers. This library includes basic functions and properties like those already included in Microsoft.XMLDOM ActiveXObject.
UpdateURLParams
- Submitted 10/21/2009
Example code:
CurrentURL=http://someurl.com/index.html
updateURLParams('param1','1') will return 'CurrentURL=http://someurl.com/index.html?param1=1'
then updateURLParams('param1','3') will return 'http://someurl.com/index.html?param1=3