JavaScript

FacebookTwitter

Freebie: Responsive jQuery Slider Plugin Flexslider | Smashing Magazine

When it comes to responsive design, it’s not just about fluid images or adaptive layouts. http://mobile.smashingmagazine.com/2011/08/24/freebie-responsive-jquery-slider-plugin-flexslider/

How to get the value of a form element : Drop downs and lists

This article is in continuation of getting form element values using JavaScript series. Drop down list We can obtain a reference to this type of element using its name: To get the index of the selected option in the JavaScript options array of the select element, we can use the selectedIndex property of the select element object: We can now use this index to determine the value of the selected option: http://www.javascript-coder.com/javascript-form/javascript-get-select.phtml
Home / Free JavaScripts / Images & Music / Here Description: Create graphs out of raw data using Graph It! Just input the name/value pairs of the involved graph elements, and leave the rest to the script. http://www.javascriptkit.com/script/script2/graphit.shtml

Paste JavaScript Graph-it!

Tutorials

JavaScript Garden

Function Declarations and Expressions Functions in JavaScript are first class objects. That means they can be passed around like any other value. One common use of this feature is to pass an anonymous function as a callback to another, possibly an asynchronous function. The function Declaration function foo () {} http://bonsaiden.github.com/JavaScript-Garden/#intro