Welcome To Snipplr
Everyone's Recent JavaScript Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Select some text to translate, or don't select anything to translate the entire page.
0
711
posted 15 years ago by wizard04
This is just a basic jQuery crossfade plugin. Should be executed on a list object (ul or ol) because it does specifically look for the li children. The plugin, as implemented, has two options, speed and pause. Speed being the speed at which the top i...
0
637
posted 15 years ago by jdfwarrior
The Number objects value determines how often the supplied function is repeated.
Inspired by ROR & Python.
"Pollutes" Number's prototype.
0
756
posted 15 years ago by peta
This is based on the [Sort Gmail Messages By Bookmarklet](http://snipplr.com/view/10432/sort-gmail-messages-by-subject/ "Sort Gmail Messages By Bookmarklet - http://snipplr.com/view/10432/sort-gmail-messages-by-subject/") snippet.
Drag this int...
1
842
posted 15 years ago by roryok
Video For Everybody is a great way to use the `<video>` tag with fallbacks for QuickTime or Flash for users with old browsers, but it requires that every video be encoded twice (once for the MP4 and once for the OGG).
This code (which requires Moo...
0
797
posted 15 years ago by Kit
Allows for delay functionality in effects, etc.
$("#navpanel").delay(2000).animate({top:"-250px"}, {easing:"swing"});
2
871
posted 15 years ago by ninjamuk
Simple [SoundManager2](http://www.schillmania.com/projects/soundmanager2/doc/download/#latest "Download SoundManager2") example (uses jQuery)
0
928
posted 15 years ago by chrisdpratt
Just include this script on the site and you’ll get a Firebug console that pops up for debugging in any browser. Not quite as full featured but it’s still pretty helpful! Remember to remove it when you are done.
1
741
posted 15 years ago by paulgrenwood
Ensures all elements in an array are unique
newArray = myArray.unique();
0
631
posted 15 years ago by svenito
This extends arrays withe a removeItems operation to remove all occurances of <item> from <array>
usage: myArray.removeItems("words");
0
651
posted 15 years ago by svenito
This will get the document's body in a very agreeable manner - it returns the first div on the page if there is no body (hey it can happen).
Adapted from code by Scott Schiller
0
557
posted 15 years ago by remotezygote
Go to page, then place code in address bar and generated code will be shown in new window.
1
989
posted 15 years ago by bionic
Read a page's GET URL variables and return them as an "associative array."
Calling the function while at `example.html?foo=asdf&bar=jkls` sets `map['foo']='asdf'` and `map['bar']='jkls'`
17
6098
posted 15 years ago by the_coder
Javascript time execution utility:
Use:
var otd = new timeDebugger();
otd.start();
alert(otd.end());
1
847
posted 15 years ago by marcocs