How to remove white spaces from a string using jQuery ? Last Updated : 05 Aug, 2025 Comments Improve Suggest changes Like Article Like Report In this article, we will see how to remove the white spaces from string using jQuery. To remove the white spaces, we will use trim() method. The trim() method is used to remove the white spaces from the beginning and end of a string. Syntax: jQuery.trim( str ) Parameter: This method accepts a single parameter string that is to be trimmed. In this case, we write string containing white spaces in <pre> tag and then apply trim() method to remove all white spaces from starting and ending position. After removing the white spaces we use html() method to display the trimmed string. Example: This example illustrates the removal of the white spaces from a string using jQuery. HTML <!DOCTYPE html> <html> <head> <title> How to remove white space from a string using jQuery? </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function () { $("h1").css("color", "green"); $("button").click(function () { $(".str").html("String without whitespaces"); var str = $(".string").text(); var trimStr = $.trim(str); $(".res-string").html(trimStr); }) }); </script> </head> <body> <h1>GeeksforGeeks</h1> <h3> How to remove white space from a string using jQuery? </h3> <h4>String containing white spaces</h4> <pre class="string"> GeeksforGeeks </pre> <button>Trim String</button> <h4 class="str"></h4> <pre class="res-string"></pre> </body> </html> Output: Create Quiz Comment V vkash8574 Follow 0 Improve V vkash8574 Follow 0 Improve Article Tags : JQuery HTML-Tags jQuery-Methods HTML-Questions jQuery-Questions +1 More Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like