1 2 3 4 5 6 7 8 9 10 |
$(document).on('keyup', '#item1', function() { var myLength = $("#item1").val().length; if (myLength > 2) { $('#item3').css({"display":"block"}); $('#item1').val($('#item1').val().slice(0, 1).toUpperCase() + $('#item1').val().slice(1)); }; alert("each letter you type this pops up"); }); |
1 2 3 |
<input type="text" id="item1"> |