How to Remove All Spaces from String in JQuery?

By Hardik Savani November 5, 2023 Category : jQuery

In this post, I would like to share with you how to remove all white spaces or blank space from a string using jquery.

Actually, we may sometime require to delete all empty spaces from string in jquery javascript. we can easily remove all black space using jquery replace function.

Here i give you very small example with one rich textbox and add button bellow. You have to simple add string on rich text box then click on button it will remove all spaces from added string.

It's very simple example and also i give you demo for this you can see bellow button. You are able to download code for remove spaces using jquery. So let's see bellow example.

Index.php

<html lang="en">

<head>

<title>How to remove all spaces from string in JQuery? - ItSolutionStuff.com</title>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>

</head>

<body>


<div>

<h1>How to remove all spaces from string in JQuery? - ItSolutionStuff.com</h1>

<textarea class="content-text">

ItSolutionStuff.com have a collection of Example and Demo of IT.

</textarea>

<button>Remove White Space</button>

</div>


<script type="text/javascript">

$("button").click(function(){

myText = $(".content-text").val();

var remove_space = myText.replace(/ /g,'');

alert(remove_space);

});

</script>


</body>

</html>

You can also download code and check demo too.

I hope it can help you...

Shares