ItSolutionStuff.com

How to Remove All Spaces from String in JQuery?

By Hardik Savani • November 5, 2023
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...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Selected Radio Button Value in JQuery?

Read Now →

JQuery Redirect to Another Page After 5 Seconds Example

Read Now →

How to Check If Key Exists in JSON Object using JQuery?

Read Now →

How to Get Selected Checkbox Value from Checkboxlist using JQuery?

Read Now →

JQuery - How to Push Specific Key and Value in Array?

Read Now →

How to Call AngularJS Controller Function in JQuery?

Read Now →

How to Remove Comma from String in JQuery?

Read Now →

How to Remove All Whitespace from String in JQuery?

Read Now →

JQuery Delete Confirm Modal using Bootbox Example

Read Now →

How to Remove Query String from URL using JQuery?

Read Now →

Check and Uncheck All Checkbox using JQuery Example

Read Now →

How to Allow Only One Checkbox Checked at a Time in JQuery?

Read Now →

How to Check Undefined, Empty and Null in JQuery?

Read Now →

How to Convert Line Breaks to br in jQuery ?

Read Now →

How to Check Object is Empty or Not in JQuery?

Read Now →