jQuery trim() remove white spaces from a string

Description

jQuery trim() remove white spaces from a string

View in separate window

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Remove White Space from Strings</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
    $(document).ready(function(){
        var myStr = $(".original").text();
        var trimStr = $.trim(myStr);
        $(".trimmed").html(trimStr);
    });/* w  w  w . j  a va2  s  . co  m*/
</script>
</head>
<body>
    <h3>Original String</h3>
    <pre class="original">      text     test       </pre>
    <br>
    <h3>Trimmed String</h3>
    <pre class="trimmed"></pre>
</body>
</html>



PreviousNext

Related