jQuery <textarea> get string content

Description

jQuery <textarea> get string content

View in separate window

<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Count Number of Words in a String</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            var words = $.trim($("textarea").val()).split(" ");
            document.getElementById("demo").innerHTML = words.length;
        });// w  ww. j  a  v  a2  s .  c  o  m
    });
</script>
</head>
<body>
    <p id="demo"></p>
    <textarea cols="50">The quick brown fox jumps over the lazy dog.</textarea>
    <br>
    <button type="button">Count Words</button>
</body>
</html>



PreviousNext

Related