RSS

To trim the Textbox Using Jquery

- The Jquery.trim() function is used to remove the extra spaces from the left & right side of the string.

//To Removing the space in string using Jquery's Trim function
$(document).ready(function () {
var strName = $("#txtUserName").val();
strName = jQuery.trim(strName);
});

0 comments:

Post a Comment