1 2 3 4
/** * http://www.openjs.com/scripts/events/keyboard_shortcuts/ * Version : 2.01.B ...
JavaScript On Handling Keyboard Shortcuts...
by Tien Dung,
August 06, 2008 07:22
1
return Math.floor(x/60) + ":" + (x%60<10?"0":"")+x%60;
JavaScript On countdown timer (minutes &a...
by AnonymousBot,
August 01, 2008 20:45
Sorry, one slight correctio...
1
return Math.floor(x/60) + ":" + (x<10?"0":"")+x%60;
JavaScript On countdown timer (minutes &a...
by AnonymousBot,
August 01, 2008 20:22
Change line 12 to read:
JavaScript On countdown timer (minutes &a...
by Tien Dung,
July 28, 2008 23:43
Hi Steve, just change to fu...
JavaScript On countdown timer (minutes &a...
by steve,
July 28, 2008 12:39
guys - awesome script. gre...
1 2 3 4
var odump = (function(){ var max, INDENT = " "; // As long as you need :) ...
JavaScript On Recursively dump an object
by Tien Dung,
July 25, 2008 10:00
More JavaScript magic and e...
JavaScript On countdown timer (minutes &a...
by Jermaine,
July 24, 2008 06:50
Guys, this helped me alot. ...
1 2 3 4
<html> <body> <div id="countdown"></div> ...
JavaScript On countdown timer (minutes &a...
by Tien Dung,
July 24, 2008 01:03
Here is my refactor code. M...
1 2 3
this.getHttpRequest(identifier).onreadystatechange = function() { ajaxChat.handleResponse(identifier); };
1 2 3 4
function numberToCurrency(number, format) { var match, defaultFormat, property, integerPart, fractionalPart; ...
JavaScript On Rails-like number_to_curren...
by Tien Dung,
July 23, 2008 04:24
Oops! I forgot precision = ...
1 2 3 4
function numberToCurrency(number, format) { var match, defaultFormat, property, integerPart, fractionalPart; ...
JavaScript On Rails-like number_to_curren...
by Tien Dung,
July 23, 2008 04:12
I combine two function in o...
JavaScript On Rails-like number_to_curren...
by Barry Hess,
July 17, 2008 14:39
This is JavaScript - I don'...
JavaScript On Rails-like number_to_curren...
by pink,
July 17, 2008 13:43
hi, how do you use this? I ...
1 2 3 4
$.fn.textNodes = function() { var ret = []; $.each(this[0].childNodes, function() { ...
JavaScript On [jQuery] All descendent tex...
by jed,
July 08, 2008 16:27
@jp.stacey
Good catch. I d...
1 2 3 4
TDisplay = new _TDisplay(); TDisplay.tick = function() { TDisplay._tick.call(TDisplay); ...
JavaScript On countdown timer (minutes &a...
by Ryan Cooke,
July 03, 2008 04:10
@Chris: I used my prototypi...
1 2 3
$.fn.textNodes = function() { return this.find(*).filter(function(index) { return (this.nodeType==3)||(this.nodeName="br")}).andSelf(); }
JavaScript On [jQuery] All descendent tex...
by Eineki,
June 30, 2008 10:43
Let me say that I'm rather ...
1 2 3 4
function _TDisplay() { var self = this; this.tick = function () { ...
JavaScript On countdown timer (minutes &a...
by Chris Jester-Young,
June 29, 2008 22:23
@Ryan: Yes, it seems backwa...
1 2 3 4
<div id="countdown"></div> <div id="notifier"></div> ...
JavaScript On countdown timer (minutes &a...
by Ryan Cooke,
June 29, 2008 21:32
Here's an OO implementation...
1 2 3 4
$.fn.textNodes = function() { var ret = []; this.contents().each( function() { ...
JavaScript On [jQuery] All descendent tex...
by jp.stacey,
June 29, 2008 21:32
From what you say, you only...
1 2 3 4
<div id="countdown"></div> <div id="notifier"></div> ...
JavaScript On countdown timer (minutes &a...
by Glen Solsberry,
June 27, 2008 21:06
What about the following?
1
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
JavaScript On Simple Form Validation
by Tj Holowaychuk,
June 09, 2008 21:08
This will REALLY cut down y...


My final attempt :)