js

TwitterFacebook
Get flash to fully experience Pearltrees
AJAX provides Web developers with plenty of opportunities to enhance the user experience and improve the performance of their websites. There are countless ways that AJAX can be used, and fortunately there are plenty of good and useful AJAX tutorials out there to help you with your own implementation. This post serves as a collection of useful tutorials on working with AJAX in a wide variety of ways. You’ll find tutorials on working with forms, building shopping carts, creating chat features, working with log-ins and usernames and much more. AJAX Username Availability Checker Using MooTools 1.2 When allowing a user to register a username, you can use AJAX with MooTools to let them check the availability of the username being submitted. http://rohitdubal.wordpress.com/2009/02/16/50-excellent-ajax-tutorials/

50 Excellent AJAX Tutorials « Best Web Design

http://www.dynamicajax.com/fr/JSON_AJAX_Web_Chat-271_290_324.html This tutorial will walk you through the steps to create an JSON AJAX driven website. This tutorial is very similar to the original AJAX Web Chat tutorial that I wrote back in November of 2005, but instead of passing the message data back as XML, we will be using JSON. Today you woke up with an alarm bell ringing in the back of your mind that said WHAT THE BLOODY HELL IS THIS JSON THING AND WHY IS IT EVERYWHERE ALL OF A BLOODY SUDDEN! So what is JSON ? JSON stands for JavaScript Object Notation and is basically a lightweight way of describing hierarchical data.

JSON AJAX Web Chat Tutorial

Writing XML using JavaScript - CodeProject

Using the code The object is called XMLWriter . It automatically replaces invalid characters such as quotation marks or greater than signs with the appropriate XML values. However, it does not throw exceptions on invalid tag names, because the application I’m writing won’t have the possibility of producing invalid tag names. http://www.codeproject.com/Articles/12504/Writing-XML-using-JavaScript
What is OpenFaces? OpenFaces is an open-source library of AJAX-powered JSF components, an Ajax framework and a client-side validation framework. OpenFaces is based on the set of JSF components formerly known as QuipuKit.

OpenFaces

http://www.openfaces.org/

jQuery SWFObject

http://jquery.thewikies.com/swfobject/ The jQuery SWFObject plugin is an addon for jQuery that lets you easily embed flash movies on a page. This plugin gives you the best of both worlds; you get the power of SWFObject within the jQuery API. The latest version, 1.1.1, is based on the latest SWFObject version 2.2. The project was started in 2009 with permission from the SWFObject team.

Detecting Smartphones Using JavaScript :: Hand Interactive Resources

http://www.hand-interactive.com/resources/detect-mobile-javascript.htm These techniques depend on the contents of the UserAgent string. As a result, these techniques may not work when the browser is emulating another (e.g., some mobile browsers can be set to emulate Internet Explorer). Mobile operators can also change the UserAgent contents when the device is customized for their networks and added to their stock device portfolio. UserAgent strings are moving targets.
http://jqueryui.com/download Customize your jQuery UI download by selecting the version and specific modules you need in the form below or select a quick download package. A range of current and historical jQuery UI releases are also hosted on Google's CDN . 1.8.18 Themes: base , black-tie , blitzer , cupertino , dark-hive , dot-luv , eggplant , excite-bike , flick , hot-sneaks , humanity , le-frog , mint-choc , overcast , pepper-grinder , redmond , smoothness , south-street , start , sunny , swanky-purse , trontastic , ui-darkness , ui-lightness , and vader .

jQuery UI - Configure your download

Docs - Element/Element

http://mootools.net/docs/core/Element/Element The following functions are treated as Window methods. The document.id function has a dual purpose: Getting the element by its id, and making an element in Internet Explorer "grab" all the Element methods. This method is useful when it's unclear if working with an actual element or an id.
The first thing you’ll need to do is use SWFObject to embed your Flash site into your HTML page. Most Flash developers are already doing this but the important thing to do here is to make sure you take advantage of SWFObject’s capability to display alternate content to users without Flash installed. Unfortunately a lot of Flash sites using SWFObject fail to provide anything useful as far as alternate content. Below is an example of how a lot of Flash sites look to users without Flash: Not very helpful to users on mobile devices. At the very least you should include some basic content from the site like contact info and relevant links in addition to having a link to download the latest version of Flash.

Make Your Flash Site iPhone and iPad Friendly | Warm Forest Flash Blog

http://www.warmforestflash.com/blog/2010/07/make-your-flash-site-iphone-friendly/

jquery-fadein-fadeout-transparent-png-ie7-chrome-590295

The solution I came up with is not ideal, so first let me start by asking anyone who comes up with a solution and runs across this thread, to please post. I first checked to see what kind of degradation I would get using transparent gif's. While this worked to an extent, the quality and transparency was not acceptable, so I moved on. http://www.sitepoint.com/forums/showthread.php?590295-jQuery-fadein-fadeout-of-transparent-png-in-IE7-and-Chrome&s=86b8bcdbeb5cab908fce2f5f84e3e4df

JavaScript Timers with setTimeout and setInterval

In this tutorial we'll look at JavaScript's setTimeout(), clearTimeout(), setInterval() and clearInterval() methods, and show how to use them to set timers and create delayed actions. JavaScript features a handy couple of methods of the window object: setTimeout() and setInterval() . These let you run a piece of JavaScript code at some point in the future. In this tutorial we'll explain how these two methods work, and give some practical examples. setTimeout() also returns a numeric timeout ID that can be used to track the timeout.
This is a JavaScript class that is used to store URLs. It comes with properties that represent each part of the URL, and can be updated by changing the href property. The key properties that this article deals with are: The window.location object is the specific object that stores the URL of the currently loaded page. If a JavaScript function changes the window.location.href property, then the page should reload with the new location. However, this may not always be the case, and so the location.reload and location.replace methods have also been provided in the Location object.

How To Get URL Parts in JavaScript: JavaScript Tutorial Describing the Window.location Object