Javascript String is_empty()
empty()
// empty test//w w w . jav a 2s . co m String.prototype.is_empty=function(){ return (this.search(/\S/)==-1)?true:false; }