How can I capitalize the first letter of each word in a text field using JQuery? I've been struggling to achieve this.
Here is the Bootstrap code that I'm currently using to extract data from a text field when a button is submitted
<button class="btn btn-primary" type="button" id="btn4" value="alternatingCase">Alternating Case</button>
The following JQuery code only converts the first letter of the paragraph to uppercase:
$("#btn4").click(function(){
var input = $("#input1");
input.val(input.val().charAt(0).toUpperCase() + input.val().substr(1).toLowerCase());
});