Si no entiendes expresiones regulares puedes usar esto:
Código Javascript
:
Ver originalString.prototype.trim=function(){
var tmp=this;
while(tmp.charAt(0)==' ')tmp=tmp.substring(1,tmp.length);
while(tmp.charAt(tmp.length-1)==' ')tmp=tmp.substring(0,tmp.length-1);
return tmp;
}
Saludos