Welcome To Snipplr
Everyone's Recent JavaScript Snippets Tagged textmate
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
« Prev 1 Next »
Will convert all of the mysql dates on the page to be localized.
0
775
posted 14 years ago by yisreldov
In order to track links out Google requires you add this snippet of JavaScript to your anchor(a) tag. Replace /G1/example.com with whatever you want to use to identify the link.
1
846
posted 15 years ago by smoothdzion
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
553
posted 15 years ago by remotezygote
Thanks to [James](
http://www.girsbrain.org/blog
) for this code.
0
697
posted 15 years ago by zachharkey
Read a page's GET URL variables and return them as an associative array.
----
Example for URL http://www.example.com/index.html?hello=bonjour&goodevening=bonsoir
var hash = getUrlVars();
alert(hash['hello']); // prints 'bonjour'
alert(hash...
35
7930
posted 18 years ago by Roshambo
redirects a splash page if visited before. Number of days until expiry can be set
0
865
posted 18 years ago by markhope
Redirect a splash page using javascript. This snippet allows one redirect per session making the backwards navigation possible using the back button.
0
961
posted 18 years ago by markhope
« Prev 1 Next »