Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which are the ways to get and render an input value using jQuery?

Here is one:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
    $("#txt_name").keyup(function(){
        alert($(this).val());
    });

})
</script>

<input type="text" id="txt_name"  />
share|improve this question

4 Answers

up vote 10 down vote accepted
//get
bla = $('input[id=txt_name]').val();
//set
$('input[id=txt_name]').val('bla');
share|improve this answer
6  
Funny that this is suddenly an accepted answer while less concrete than mine. – RJD22 Apr 10 at 8:26
2  
@RJD22 A buddy of OP's, perhaps? – Adrian Carneiro Apr 10 at 22:41

As far as I know you can only select a value with these 2:

value = $("#txt_name").val(); 

and

value = $("#txt_name").attr('value');

if you want to use normal javascript (I think it's less elegant):

document.getElementById('txt_name').value 

Then you can alert the value by doing:

alert(value);

Or you could print it into you HTML/DOM:

$("#dom_element").text(value);

and

$("#dom_element").html(value);
share|improve this answer
This what i expected... – Bharanikumar Nov 3 '10 at 15:16
good to know. Please select this answer as correct answer :). I like the kudos – RJD22 Nov 3 '10 at 15:20
I know this is an older question, but don't forget that the attr may also be replaced with prop. This is semantically better. – Sable Foste Nov 4 '12 at 7:02
Only $("#txt_name").val(str); worked for me in Chrome to set the value. Try this post. – gkiko Feb 5 at 21:17

You can get the value attribute directly since you know it's an <input> element, but your current usage of .val() is already the current one.

For the above, just use .value on the DOM element directly, like this:

$(document).ready(function(){
  $("#txt_name").keyup(function(){
    alert(this.value);
  });
});
share|improve this answer
other then this val() – Bharanikumar Nov 3 '10 at 15:09
@Bharan Why do you need an alternative? – Pete Herbert Penito Nov 3 '10 at 15:14
2  
in some place, i would like to use alternative, – Bharanikumar Nov 3 '10 at 16:09

I think this function is missed here in previous answers

.val( function(index, value) ) 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.