function trim(value) {var temp = value;var obj = /^(\s*)([\W\w]*)(\b\s*$)/;if (obj.test(temp)) { temp = temp.replace(obj, '$2'); }var obj = / +/g;temp = temp.replace(obj, " ");if (temp == " ") { temp = ""; }return temp;}
How Do You Use This Function :
var a = trim(document.getElementById('TextBoxID').value);
How Do You Use This Function :
var a = trim(document.getElementById('TextBoxID').value);
No comments:
Post a Comment