vote up 202 vote down star
322

What "Hidden Features" of JavaScript do you think every programmer should know?

After having seen the excellent quality of the answers to the following questions I thought it was time to ask it for JavaScript.

Even though JavaScript is arguably the most important Client Side language right now (just ask Google) it's surprising how little most web developers appreciate how powerful it really is.

flag
1  
Sure, pessimist. :) I'd considered making this a community question. Also, after you get a certain number of points it's all diminishing returns. – Allain Lalonde Sep 14 '08 at 18:37
1  
I've been writing JavaScript professionally for 10 years now and I learned a thing or three from this thread. Thanks, Alan! – Andrew Hedges Sep 20 '08 at 7:39
show 4 more comments

98 Answers

1 2 3 4 next
vote up 1 vote down

I think, setTimeout function should be the best hidden feature of JavaScript. First time when I studied JavaScript, every books or every website always tell about how to use “setTimeout” function like “eval” function but it has delay time before execute. Please look at the following code.

// This code will shows 'Hello World!' message in modal dialog after 1 s.
setTimeout("alert('Hello World!');", 1000);

I just know that we can call this function by passing function as the first parameter like the following code.

// This code will works like the above function.
setTimeout(function()
{
    alert('Hello World!');
}, 1000);

As you know, the first code style has benefit about dynamic creating statement. But it can't receive any private variable in current scope like the following code.

var x = 3;
var statement = 'x';

// Set statement to 'x + x + x + x + x'
for(var i = 0; i < 4;i++)
{
    statement += " + x";
}

// Display result of 'x + x + x + x + x' that is 15 after 1 s.
// However, this code will throw exception because it cannot find 'x' variable in global scope.
setTimeout('alert(' + statement + ')', 1000);

By the way, you can solve this error by using my second pattern that I just tell like the following code.

var x = 3;
setTimeout(function()
{
    var result = 0;

    for(var i = 0; i < 5;i++)
    {
        result += x;
    }

    // Show result of the above calculation that is 15 without error.
    alert(result);
}, 1000);

I think that 99% of web developers (excluding JavaScript plug-in developer) do not know about this pattern.

link|flag
show 1 more comment
vote up 0 vote down

function can have methods.

I use this pattern of AJAX form submissions.

var fn = (function() {
		var ready = true;
		function fnX() {
			ready = false;
			// AJAX return function
			function Success() {
				ready = true;
			}
			Success();
			return "this is a test";
		}

		fnX.IsReady = function() {
			return ready;
		}
		return fnX;
	})();

	if (fn.IsReady()) {
		fn();
	}
link|flag
vote up 0 vote down

Hm, I didn't read the whole topic though it's quite interesting for me, but let me make a little donation:

// forget the debug alerts
var alertToFirebugConsole = function() {
	if ( window.console && window.console.log ) {
		window.alert = console.log;
	}
}
link|flag
vote up -1 vote down

If I call a javascript function in html body like below:

<html>
<head>
  <title>Test Page</title>

</head>

<body>
<form action="h.html" name="a" method="post">
<input type="hidden" name="name"/>
<input type="hidden" name="name2"/>
<input type="hidden" name="name3"/>

<script language="javascript">
a.submit();
</script>
</form>

</body>
</html>

It will not submit the form always. But if I write some text or   before the script as below.

Please wait....
 <script language="javascript">
    a.submit();
    </script>

Then the script will execute always.

link|flag
vote up -2 vote down

'Private' vars:

    var obj = (function() {
	var privateVar = "this var is scoped to the anonymous function called";
	objReturn = {
		Update: function(str) { privateVar = str },
		Show: function() { alert(privateVar); }
	};
	return objReturn;
})();
// the return object has scope to the variable 'privateVar'
// but cannot access 'privateVar' directly
obj.Show();
obj.Update("testing update");
obj.Show();

you could also make 'private' methods this way. I have found this method of creating js objects useful on occasion.

link|flag
vote up 4 vote down

My favorite trick is using apply to perform a callback to an object's method and maintain the correct "this" variable.

function MakeCallback(obj, method) {
    return function() {
        method.apply(obj, arguments);
    };
}

var SomeClass = function() { 
     this.a = 1;
};
SomeClass.prototype.addXToA = function(x) {
     this.a = this.a + x;
};

var myObj = new SomeClass();

brokenCallback = myObj.addXToA;
brokenCallback(1); // Won't work, wrong "this" variable
alert(myObj.a); // 1


var myCallback = MakeCallback(myObj, myObj.addXToA);
myCallback(1);  // Works as expected because of apply
alert(myObj.a); // 2
link|flag
vote up 0 vote down

These are not always a good idea, but you can convert most things with terse expressions. The important point here is that not every value in JavaScript is an object, so these expressions will succeed where member access on non-objects like null and undefined will fail. Particularly, beware that typeof null == "object", but you can't null.toString(), or ("name" in null).

Convert anything to a Number:

+anything
Number(anything)

Convert anything to an unsigned four-byte integer:

anything >>> 0

Convert anything to a String:

'' + anything
String(anything)

Convert anything to a Boolean:

!!anything
Boolean(anything)

Also, using the type name without "new" behaves differently for String, Number, and Boolean, returning a primitive number, string, or boolean value, but with "new" these will returned "boxed" object types, which are nearly useless.

link|flag
vote up 0 vote down

Well, it's not much of a feature, but it is very useful:

Shows selectable and formatted alerts:

alert(prompt('',something.innerHTML ));
link|flag
vote up 7 vote down

Know how many variables are expected by a function

function add_nums(num1, num2, num3 ){
    return num1 + num2 + num3;
}
add_nums.length // 3 is the number of parameters expected.

Know how many parameters are received by the function

function add_many_nums(){
    return arguments.length;
}    
add_many_nums(2,1,122,12,21,89); //returns 6
link|flag
2  
Never knew about the first part. Nice! – mcjabberz Sep 17 at 19:48
vote up 0 vote down

Here's a simple way of thinking about 'this'. 'This' inside a function will refer to future object instances of the function, usually created with operator new. So clearly 'this' of an inner function will never refer to an instance of an outer function.

The above should keep one out of trouble. But there are more complicated things you can do with 'this.'


Example 1:


     function DriveIn()
     {
          this.car = 'Honda';
          alert(this.food);  //'food' is the attribute of a future object 
                             //and DriveIn does not define it.
     }

     var A = {food:'chili', q:DriveIn};  //create object A whose q attribute 
                                         //is the function DriveIn;

     alert(A.car); //displays 'undefined' 
     A.q();        //displays 'chili' but also defines this.car.
     alert(A.car); //displays 'Honda' 


The Rule of This:

Whenever a function is called as the attribute of an object, any occurrence of 'this' inside the function (but outside any inner functions) refers to the object.

We need to make clear that "The Rule of This" applies even when operator new is used. Behind the scenes new attaches 'this' to the object through the object's constructor attribute.


Example 2:


      function Insect ()
      {
           this.bug = "bee";
           this.bugFood = function()
           {
               alert("nectar");
           }
       }

      var B = new Insect();
      alert(B.constructor); //displays "Insect"; By "The Rule of This" any
                            //ocurrence of 'this' inside Insect now refers 
                            //to B.    

To make this even clearer, we can create an Insect instance without using operator new.

Example 3:

   
    var C = {constructor:Insect};  //Assign the constructor attribute of C, 
                                   //the value Insect.
    C.constructor();               //Call Insect through the attribute. 
                                   //C is now an Insect instance as though it 
                                   //were created with operator new. [*]
    alert(C.bug);                  //Displays "bee." 
    C.bugFood();                   //Displays "nectar." 

[*] The only actual difference I can discern is that in example 3, 'constructor' is an enumerable attribute. When operator new is used 'constructor' becomes an attribute but is not enumerable. An attribute is enumerable if the for-in operation "for(var name in object)" returns the name of the attribute.

link|flag
vote up 1 vote down

Namespaces

In larger JavaScript applications or frameworks it can be useful to organize the code in namespaces. JavaScript doesn't have a module or namespace concept buildin but it is easy to emulate using JavaScript objects. This would create a namespace called nsand attaches the function footo it.

if (!window.ns) {
  window.ns = {};
}

window.ns.foo = function() {};

It is common to use the same global namespace prefix throughout a project and use sub namespaces for each JavaScript file. The name of the sub namespace often matches the file's name.

The header of a file called ns/button.jscould look like this:

if (!window.ns) {
  window.ns = {};
}
if (!window.ns.button) {
  window.ns.button = {};
}

// attach methods to the ns.button namespace
window.ns.button.create = function() {};
link|flag
vote up 3 vote down

The Module Pattern

<script type="text/javascript">
(function() {

function init() {
  // ...
}

window.onload = init;
})();
</script>

Variables and functions declared without the var statement or outside of a function will be defined in the global scope. If a variable/function of the same name already exists it will be silently overridden, which can lead to very hard to find errors. A common solution is to wrap the whole code body into an anonymous function and immediately execute it. This way all variables/functions are defined in the scope of the anonymous function and don't leak into the global scope.

To explicitly define a variable/function in the global scope they have to be prefixed with window:

window.GLOBAL_VAR = 12;
window.global_function = function() {};
link|flag
vote up 1 vote down

My first submission is not so much a hidden feature as a rarely used application of the property re-definition feature. Because you can redefine an object's methods, you can cache the result of a method call, which is useful if the calculation is expensive and you want lazy evaluation. This gives the simplest form of memoization.

function Circle(r) {
    this.setR(r);
}

Circle.prototype = {
  recalcArea: function() {
        this.area=function() {
            area = this.r * this.r * Math.PI;
            this.area = function() {return area;}
            return area;
        }
    },
  setR: function (r) {
      this.r = r;
      this.invalidateR();
    },
  invalidateR: function() {
        this.recalcArea();
    }
}

Refactor the code that caches the result into a method and you get:

Object.prototype.cacheResult = function(name, _get) {
  this[name] = function() {
    var result = _get.apply(this, arguments);
    this[name] = function() {
      return result;
    }
    return result;
  };
};

function Circle(r) {
    this.setR(r);
}

Circle.prototype = {
  recalcArea: function() {
        this.cacheResult('area', function() { return this.r * this.r * Math.PI; });
    },
  setR: function (r) {
      this.r = r;
      this.invalidateR();
    },
  invalidateR: function() {
        this.recalcArea();
    }
}

If you want a memoized function, you can have that instead. Property re-definition isn't involved.

Object.prototype.memoize = function(name, implementation) {
    this[name] = function() {
        var argStr = Array.toString.call(arguments);
        if (typeof(this[name].memo[argStr]) == 'undefined') {
            this[name].memo[argStr] = implementation.apply(this, arguments);
        }
        return this[name].memo[argStr];
    }
};

Note that this relies on the standard array toString conversion and often won't work properly. Fixing it is left as an exercise for the reader.

My second submission is getters and setters. I'm surprised they haven't been mentioned yet. Because the official standard differs from the de facto standard (defineProperty vs. define[GS]etter) and Internet Explorer barely supports the official standard, they aren't generally useful. Maybe that's why they weren't mentioned. Note that you can combine getters and result caching rather nicely:

Object.prototype.defineCacher = function(name, _get) {
    this.__defineGetter__(name, function() {
        var result = _get.call(this);
        this.__defineGetter__(name, function() { return result; });
        return result;
    })
};

function Circle(r) {
    this.r = r;
}

Circle.prototype = {
  invalidateR: function() {
        this.recalcArea();
    },
  recalcArea: function() {
        this.defineCacher('area', function() {return this.r * this.r * Math.PI; });
    },
  get r() { return this._r; }
  set r(r) { this._r = r; this.invalidateR(); }
}

var unit = new Circle(1);
unit.area;

Efficiently combining getters, setters and result caching is a little messier because you have to prevent the invalidation or do without automatic invalidation on set, which is what the following example does. It's mostly an issue if changing one property will invalidate multiple others (imagine there's a "diameter" property in these examples).

Object.prototype.defineRecalcer = function(name, _get) {
  var recalcFunc;
  this[recalcFunc='recalc'+name.toCapitalized()] = function() {
    this.defineCacher(name, _get);
  };
  this[recalcFunc]();
  this.__defineSetter__(name, function(value) {
      _set.call(this, value);
      this.__defineGetter__(name, function() {return value; });
  });
};

function Circle(r) {
    this.defineRecalcer('area',
             function() {return this.r * this.r * Math.PI;},
             function(area) {this._r = Math.sqrt(area / Math.PI);},
    );
    this.r = r;
}

Circle.prototype = {
  invalidateR: function() {
        this.recalcArea();
    },
  get r() { return this._r; }
  set r(r) { this._r = r; this.invalidateR(); }
}
link|flag
vote up 0 vote down

Using Function.apply to specify the object that the function will work on:

Suppose you have the class

function myClass(){
 this.fun = function(){
   do something;
 };
}

if later you do:

var a = new myClass();
var b = new myClass();

myClass.fun.apply(b); //this will be like b.fun();

You can even specify an array of call parameters as a secondo argument

look this: https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Function/apply

link|flag
vote up 4 vote down

JavaScript typeof operator used with arrays or nulls always returns object value which in some cases may not be what programmer would expect.

Here's a function that will return proper values for those items as well. Array recognition was copied from Douglas Crockford's book "JavaScript: The Good Parts".

function typeOf (value) {
    var type = typeof value;
    if (type === 'object') {
        if (value === null) {
             type = 'null';
        } else if (typeof value.length === 'number' && 
            typeof value.splice === 'function' && 
            !value.propertyIsEnumerable('length')) {
            type = 'array';
        }
    }
    return type;
}
link|flag
vote up 0 vote down

You can make "classes" that have private (inaccessible outside the "class" definition) static and non-static members, in addition to public members, using closures.

Note that there are two types of public members in the code below. Instance-specific (defined in the constructor) that have access to private instance members, and shared members (defined in the prototype object) that only have access to private static members.

var MyClass = (function () {
    // private static
    var nextId = 1;

    // constructor
    var cls = function () {
    	// private
    	var id = nextId++;
    	var name = 'Unknown';

    	// public (this instance only)
    	this.get_id = function () { return id; };

    	this.get_name = function () { return name; };
    	this.set_name = function (value) {
    		if (typeof value != 'string')
    			throw 'Name must be a string';
    		if (value.length < 2 || value.length > 20)
    			throw 'Name must be 2-20 characters long.';
    		name = value;
    	};
    };

    // public static
    cls.get_nextId = function () {
    	return nextId;
    };

    // public (shared across instances)
    cls.prototype = {
    	announce: function () {
    		alert('Hi there! My id is ' + this.get_id() + ' and my name is "' + this.get_name() + '"!\r\n' +
    		      'The next fellow\'s id will be ' + MyClass.get_nextId() + '!');
    	}
    };

    return cls;
})();

To test this code:

var mc1 = new MyClass();
mc1.set_name('Bob');

var mc2 = new MyClass();
mc2.set_name('Anne');

mc1.announce();
mc2.announce();

If you have Firebug you'll find that there is no way to get access to the private members other than to set a breakpoint inside the closure that defines them.

This pattern is very useful when defining classes that need strict validation on values, and complete control of state changes.

To extend this class, you would put MyClass.call(this); at the top of the constructor in the extending class. You would also need to copy the MyClass.prototype object (don't reuse it, as you would change the members of MyClass as well.

If you were to replace the announce method, you would call MyClass.announce from it like so: MyClass.prototype.announce.call(this);

link|flag
vote up 0 vote down

Testing that object attributes are defined before they are used can be tedious:

// This can throw an error is some or deep or nested are undefined
some.deep.nested.attribute = somevalue;

// But testing them is tedious
if (typeof(some) != 'undefined') {
   if (typeof(some.deep) != 'undefined') {
       etc...
   }
}

However:

// Simples!
try { some.deep.nested.attribute = somevalue; }
catch (e) { alert('Ooooh'); }
link|flag
show 1 more comment
vote up 0 vote down

The coalescing operator is very cool and makes for some clean, concise code, especially when you chain it together: a || b || c || "default"; The gotcha is that since it works by evaluating to bool rather than null, if values that evaluate to false are valid, they'll often times get over looked. Not to worry, in these cases just revert to the good ol' ternary operator.

I often see code that has given up and used global instead of static variables, so here's how (in an example of what I suppose you could call a generic singleton factory):

var getInstance = function(objectName) {
  if ( !getInstance.instances ) {
    getInstance.instances = {};
  }

  if ( !getInstance.instances[objectName] ) {
    getInstance.instances[objectName] = new window[objectName];
  }

  return getInstance.instances[objectName];
};

Also, note the new window[objectName]; which was the key to generically instantiating objects by name. I just figured that out 2 months ago.

In the same spirit, when working with the DOM, I often bury functioning parameters and/or flags into DOM nodes when I first initialize whatever functionality I'm adding. I'll add an example if someone squawks.

Surprisingly, no one on the first page has mentioned hasOwnProperty, which is a shame. When using in for iteration, it's good, defensive programming to use the hasOwnProperty method on the container being iterated over to make sure that the member names being used are the ones that you expect.

var x = [1,2,3];
for ( i in x ) {
    if ( !x.hasOwnProperty(i) )  { continue; }
    console.log(i, x[i]);
}

Read here for more on this.

Lastly, with is almost always a bad idea.

link|flag
vote up 0 vote down

Look for valid variables, return the first one (G.valid(var1,var2,var3)):

    valid : function(){                                                     
            var     i,                                                      
                    args = Array.prototype.slice.call(arguments);           
            for(i in args) {                                                
                    if(args[i] !== undefined) {                             
                            return args[i];                                 
                    }                                                       
            }                                                               
            return "";                                                      
    },

Turn hh:mm:ss to (number)h (number)m:

    var time=/(\d{2}):(\d{2}):(\d{2})/;                                                                                            
    return t.replace(time, function(str, p1, p2, p3, offset, s) {                                                                  
            var     h=parseInt(p1),                                                                                                
                    m=parseInt(p2),                                                                                                
                    ret = "";                                                                                                      
            if(h > 0) {                                                                                                            
                    ret = h + "h ";                                                                                                
            }                                                                                                                      
            return ret + m + "m";                                                                                                  
    });

Deal with money in pennies....

Do an action on enter:

onEnter(element, callback):

    onEnter: function(div, callback) {                                                                                             
            div.onkeyup(function(e){                                                                                              
                    var keycode;                                                                                                   
                    if (window.event) keycode = window.event.keyCode;                                                              
                    else if (e) keycode = e.which;                                                                                 
                    else return true;                                                                                              

                    if (keycode == 13) {                                                                                           
                            callback.apply(this);                                                                                  
                    }                                                                                                              
            });                                                                                                                    
    },

serialize an object's keys, discarding its values

    sObj : function (o) {                                                                                                          
            var     ret = [],                                                                                                      
                    i;                                                                                                             
            for(i in o) {                                                                                                          
                    ret.push(i);                                                                                                   
            }                                                                                                                      
            return ret;                                                                                                            
    },
link|flag
vote up 5 vote down

The fastest loops in JavaScript are while(i--) ones. In all browsers. So if it's not that important for order in which elements of your loop get processed you should be using while(i--) form:

var names = new Array(1024), i = names.length;
while(i--)
  names[i] = "John" + i;

Also, if you have to use for() loop going forward, remember always to cache .length property:

var birds = new Array(1024); 
for(var i = 0, j = birds.length; i < j; i++)
  birds[i].fly();

To join large strings use Arrays (it's faster):

var largeString = new Array(1024), i = largeString.length;
while(i--) {
  // It's faster than for() loop with largeString.push(), obviously :)
  largeString[i] = i.toString(16);
}

largeString = largeString.join("");

It's much faster than largeString += "something" inside an loop.

link|flag
vote up 3 vote down

If you're attempting to sandbox javascript code, and disable every possible way to evaluate strings into javascript code, be aware that blocking all the obvious eval/document.write/new Function/setTimeout/setInterval/innerHTML and other DOM manipulations isn't enough.

Given any object o, o.constructor.constructor("alert('hi')")() will bring up an alert dialog with the word "hi" in it.

You could rewrite it as

var Z="constructor";
Z[Z][Z]("alert('hi')")();

Fun stuff.

link|flag
vote up 0 vote down

An interesting way to make Singleton-like objects with public / private methods (I saw this once in a jQuery plugin):

var Car = function() {

	function Engine() {

		function start() {			
		}

		function stop() {			
		}

		function internal1() {			
		}

		return {
			start : start,
			stop : stop
		}
	}();

	function start() {
		Engine.start();
		// other startup code
	}

	function stop() {
		Engine.stop();
		// other stop code
	}

	return {
		start : start,
		stop : stop	
	}
}();

The internal objects has public methods that only internal objects can interface with allowing the main object public methods for accessing the internal public methods.

link|flag
show 1 more comment
vote up 1 vote down

You can bind a JavaScript object as a HTML element attribute.

<div id="jsTest">Klick Me</div>
<script type="text/javascript">
    var someVariable = 'I was klicked';
    var divElement = document.getElementById('jsTest');
    // binding function/object or anything as attribute
    divElement.controller = function() { someVariable += '*'; alert('You can change instance data:\n' + someVariable ); };
    var onclickFunct = new Function( 'this.controller();' ); // Works in Firefox and Internet Explorer.
    divElement.onclick = onclickFunct;
</script>
link|flag
vote up 0 vote down

Maybe one of the lesser-known ones:

arguments.callee.caller + Function#toString()

function called(){
    alert("Go called by:\n"+arguments.callee.caller.toString());
}

function iDoTheCall(){
    called();
}

iDoTheCall();

Prints out the source code of iDoTheCall -- Deprecated, but can be useful sometimes when alerting is your only option....

link|flag
vote up 1 vote down

JavaScript tips or the jslibs project.

link|flag
vote up 10 vote down

You can assign local variables using [] on the left hand side. Comes in handy if you want to return more than one value from a function without creating a needless array.

function fn(){
    var cat = "meow";
    var dog = "woof";
    return [cat,dog];
};

var [cat,dog] = fn();  // Handy!

alert(cat);
alert(dog);

It's part of core JS but somehow I never realized till this year.

link|flag
1  
This is "destructuring assignment"; I believe it's only supported in Firefox versions running JavaScript 1.7 and later. It definitely causes an error in Opera 10 and Chrome 3 as well as IE. See developer.mozilla.org/en/… – NickFitz Oct 8 at 11:16
show 1 more comment
vote up 3 vote down

The parentheses are optional when creating new "objects".

function Animal () {

}

var animal = new Animal();
var animal = new Animal;

Same thing.

link|flag
show 2 more comments
vote up 4 vote down

You can iterate over Arrays using "for in"

Mark Cidade pointed out the usefullness of the "for in" loop :

// creating an object (the short way, to use it like a hashmap)
var diner = {
"fruit":"apple"
"veggetable"="bean"
}

// looping over its properties
for (meal_name in diner ) {
    document.write(meal_name+"<br \n>");
}

Result :

fruit
veggetable

But there is more. Since you can use an object like an associative array, you can process keys and values, just like a foreach loop :

// looping over its properties and values
for (meal_name in diner ) {
    document.write(meal_name+" : "+diner[meal_name]+"<br \n>");
}

Result :

fruit : apple
veggetable : bean

And since Array are objects too, you can iterate other array the exact same way :

var my_array = ['a', 'b', 'c'];
for (index in my_array ) {
    document.write(index+" : "+my_array[index]+"<br \n>");
}

Result :

0 : a
1 : b
3 : c

You can remove easily an known element from an array

var arr = ['a', 'b', 'c', 'd'];
var pos = arr.indexOf('c');
pos > -1 && arr.splice( pos, 1 );

You can shuffle easily an array

arr.sort(function() Math.random() > 0.5 ? 1 : -1);
link|flag
show 5 more comments
vote up 5 vote down

You never have to use eval() to assemble global variable names.

That is, if you have several globals (for whatever reason) named spec_grapes, spec_apples, you do not have to access them with eval("spec_" + var).

All globals are members of window[], so you can do window["spec_" + var].

link|flag
2  
Remember this is only on a browser's javascript engine. You could be running a stand alone Javascript engine. Server-side javascript anyone? -- Just nitpicking, I know... – voyager Jun 30 at 13:29
show 3 more comments
vote up 1 vote down

Existence checks. So often I see stuff like this

var a = [0, 1, 2];

// code that might clear the array.

if (a.length > 0) {
 // do something
}

instead for example just do this:

var a = [0, 1, 2];

// code that might clear the array.

if (a.length) { // if length is not equal to 0, this will be true
 // do something
}

There's all kinds of existence checks you can do, but this was just a simple example to illustrate a point

Here's an example on how to use a default value.

function(someArgument) {
      someArgument = someArgument || "This is the deault value";
}

That's my two cents. There's other nuggets, but that's it for now.

link|flag
1  
Warning: someArgument will get overridden if it evaluates as false (which includes the values 0, NaN, false, "", and null, as well as an omission of the argument) – Jason S Sep 22 at 23:35
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.