get the TEXT BOX values : not working....?
How to get Text box value on key up using jQuery.
- $(document).ready(function(){
-
- var val = $('input[name=leaddaystxt]').val(); -- this i s not working.
-
-
- $("input#leaddaystxt").live('keyup', function() {
-
alert text box value here.
alert(val); -- this is not printing anything...
- });
- });
- HTML : <input type="text" name="leaddaystxt" id="leaddaystxt" value="" size="2" maxlength="2">