Trim function in javascript or remove whitespace in javascript
trim function in javascript or remove whitespace in javascript
we can remove space spaces from a textbox on clientside like:
var a = document.getElementById('<%= txt1.ClientID %>').value.replace(/^\s+|\s+$/g, "");
