JAVASCRIPT

TwitterFacebook
Get flash to fully experience Pearltrees
TN3 Gallery is a full fledged HTML based customizable image gallery with slideshow, transitions and multiple album options. Compatible with all modern desktop and mobile browsers. Powered by jQuery. I got inspired by myself when I wrote the Editable Select plugin, so I decided to write another one. http://tympanus.net/codrops/2009/09/07/42-jquery-image-gallery-plugins/

42+ jQuery Image Gallery Plugins | Codrops

http://www.w3avenue.com/

W3Avenue - Advice & Resources For Rapid Web Development (CSS, JavaScript, jQuery, PHP, Libraries, Resources, & More...)

This update covers really useful tutorials, tips and techniques that you should have read in July 2010. Featured publications include: A List Apart, Nettuts+, Dr Dobbs, Codrops, 1stwebdesigner, CSS-Tricks, AEXT, Six Revisions, Digging into WordPress, Position Absolute, Activetuts+, Kriesi, Carrer Web Log, User Agent Man and Dev Opera. Featured authors include: Jeff Starr, Bobby van der Sluis, Christian Heilmann, Chris Coyier, Zoltan, Nikko Bautista, Mike More, Mike Taulty, Mary Lou, Christian Budschedl, Irina Borozan, Jason Lengstorf, Cedric Dugas, Vladimir Carrer, Peter Lubbers, Brian Albers, Joshua Johnson, Andy Blackwell, Alexander Dawson, Rachel Andrew, Karthik Viswanathan, Lee Munroe, Cristian-Ionut Colceriu and Kat Neville.
http://www.quirksmode.org/js/events_order.html

Javascript - Event order

Netscape 4 only supports event capturing, Explorer only supports event bubbling. Netscape 6 and Konqueror support both, while Opera and iCab support neither. On the Introduction to events page I asked a question that at first sight seems incomprehensible: “If an element and one of its ancestors have an event handler for the same event, which one should fire first?” Not surprisingly, this depends on the browser. The basic problem is very simple. Suppose you have a element inside an element

10 Fresh and Useful jQuery Plugins | Tools

Captify is a plugin that displays simple, pretty image captions that appear on rollover. The goal of Captify is to be easy to use, small/simple, and completely ready for use in production environments (unlike ImageCaptions at the moment). Also, it’s only 2.3kb! gvChart is a plugin for jQuery, that uses Google Charts to create interactive visualization by using data from the HTML table tag. It is easy in use and additionally it allows you to create five types of the charts. This plugin is designed for quick development of a page that implements a Google Map with a list of the locations that are specified within the HTML. http://webdesignledger.com/tools/10-fresh-and-useful-jquery-plugins

13 Super Useful jQuery Content Slider Scripts and Tutorials | Tutorials

http://webdesignledger.com/tutorials/13-super-useful-jquery-content-slider-scripts-and-tutorials You’ve probably noticed that a lot of websites lately have a featured area with content that slides or changes in some way. This is a great technique to show several pieces of content in a limited amount of space and a good way to engage the user. If you’ve been wondering how this is accomplished, here are 13 very useful tutorials and scripts that will help you create these types of effects using jQuery .
http://trentrichardson.com/Impromptu/index.php About jQuery Impromptu is an extension to help provide a more pleasant way to spontaneously prompt a user for input. More or less this is a great replacement for an alert, prompt, and confirm. Not only does it replace these but it also allows for creating forms within these controls. This is not intended to be a modal replacement, just a quick tool to prompt user input in a fashionable way. Try my new app to keep you informed of your car's financing status and value.

jQuery Impromptu

Prinzipiell geht die Empfehlung dahin, JavaScript nicht für Funktionalität zu verwenden, die für den Nutzer entscheiden ist. Ein Nutzer sollte also die Möglichkeit haben ohne JavaScript navigieren zu können oder ein Formular zu verschicken. JavaScript-Skripte bieten am besten Komfortfunktionen und ergänzen die normalen HTML-Informationen. http://selfmade.lemkewebdesign.de/javascript.php

JavaScript (Einbindung, Variablen, Sonderzeichen)

Congratulations! You just ran a snippet of jQuery code. Wasn't that easy? There's lots of example code throughout the documentation on this site.

jQuery: The Write Less, Do More, JavaScript Library

http://jquery.com/

Lightbox 2

Lightbox is a simple, unobtrusive script used to overlay images on top of the current page. It's a snap to setup and works on all modern browsers . Check the CSS and make sure the referenced prev.png and next.png files are in the right location. Also, make sure the loading.gif and close.png files as referenced near the top of the lightbox.js file are in the right location. If you have a set of related images that you would like to group, follow step one but additionally include a group name between square brackets in the rel attribute. http://lokeshdhakar.com/projects/lightbox2/

Fancybox - Fancy lightbox alternative

http://fancybox.net/ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis mi eu elit tempor facilisis id et neque. Nulla sit amet sem sapien. Vestibulum imperdiet porta ante ac ornare. Nulla et lorem eu nibh adipiscing ultricies nec at lacus.

Javascript return • Werte aus Funktionen zurück geben

return kann jeden Datentyp zurückgeben: Boolean, Zahlenwerte, Strings, Arrays und Objekte. Der Aufruf von return führt dazu, dass die Funktion sofort verlassen und die Kontrolle an die aufrufende Funktion zurückgegeben wird. function berechnen() { // Anweisungen +-----+ var wert = summe( 15,85 ); function summe( x, y ) | { | var add = x + y; | return add; +------------+ }