How to remove space from begin and end of string using jQuery trim
Below jQuery code remove spaces from begin and end of string using trim function of jQuery.
$(document).ready(function(){ var strVal = " jQuery By Example "; strVal = jQuery.trim(strVal); alert(strVal); });
When you run this code, "jQuery By Example" will be displayed in alert box. trim() will remove the space from begin and end of any string. Spaces within the string variable will be ignored.
Feel free to contact me for any help related to jQuery. I will gladly help you.