In this article, We will explain to you how to remove all space from the string(jQuery Remove All Space From String), here we will give you a simple example of How to remove spaces from a string using JQuery.
sometimes we need to remove all spaces from a string, then jquery can easily remove spaces from a string.
sometimes use the trim function to remove space from a string but here all spaces remove from a string, so here used replace function.
See below example
<html>
<head>
<title>jQuery Remove All Space From String - xpertphp</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div>
<h1>jQuery Remove All Space From String - xpertphp</h1>
<input class="txtDescription" name="txtDescription" value="jQuery Remove All Space From String">
<button>Remove</button>
</div>
<script type="text/javascript">
$("button").click(function(){
var txtDescription = $(".txtDescription").val();
var data = txtDescription.replace(/\s/g, '');
alert(data);
//output
//jQueryRemoveAllSpaceFromString
});
</script>
</body>
</html>