How to Remove All Whitespace from String in JQuery?
Hey,
In this quick guide, we will teach you jquery remove all whitespace from string. If you have a question about remove space from string jquery then I will give a simple example with a solution. We will use jquery remove whitespace from string. In this article, we will implement a remove whitespace from string using jquery.
Sometimes we require to remove white space from given string. So at that time you can delete spaces from string using replace() of core php. replace() will help to replace your blank space or empty space or extra space or trailing space from string that way we can remove. you can do it from bellow example.
Example:
index.html
<html lang="en">
<head>
<title>Jquery - Remove white space from string</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
</head>
<body>
<div class="mytext">
This is my site.
</div>
<script type="text/javascript">
var myString = "This is my site.";
var newString = myString.replace(/ /g,'');
console.log(newString);
</script>
</body>
</html>
Output:
Thisismysite.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Disable Browser Back Button using JQuery?
- How to Get Gravatar Image from Email using JQuery?
- How to Call AngularJS Controller Function in JQuery?
- How to Disable Right Click Menu using JQuery?
- JQuery Tooltip Example using JQuery UI Plugin
- How to Remove Query String from URL using JQuery?
- Check and Uncheck All Checkbox using JQuery Example
- How to access PHP variables in JQuery?
- How to Allow Only One Checkbox Checked at a Time in JQuery?
- How to Check Undefined, Empty and Null in JQuery?
- How to Convert Line Breaks to br in jQuery ?
- How to Check Object is Empty or Not in JQuery?
- How to use Google Maps API with JQuery PHP?