I find my element in the DOM like this :

tag_text_box = ($(this).parent().parent().find('.tags'))

I printed it out to check it is correct and indeed it is. here:

[
<input type=​"text" class=​"tags ui-autocomplete-input" style=​"width:​ 250px;​ height:​ 24px;​ background-color:​ red;​ " name=​"display_name" autocomplete=​"off" role=​"textbox" aria-autocomplete=​"list" aria-haspopup=​"true">​
]

However tag_text_box.text() seems not to be working at all. It doesn't print whatever text I have typed in my input. Should I use another method?

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted

You need to use .val() instead; .text() gets the text from inside an element, whereas .val() gets the value of the text box, which is an attribute of the input.

You can also leave the surrounding brackets out in your first line. Note that you should also be using var; currently, you're declaring tag_text_box in the global namespace. Here's what it should look like:

var tag_text_box = $(this).parent().parent().find('.tags');

var box_text = tag_text_box.val();

To be more concise, you can simply assign the input's value straight to a variable:

var tags = $(this).parent().parent().find('.tags').val();
link|improve this answer
feedback

To get the value of your text input you'd have to use:

($(this).parent().parent().find('.tags')).val()

link|improve this answer
feedback

It is because you should use .val() instead of .text()..

.val() is used for anything where the dom object has a value instead.

You can read more on .val() and which dom elements to use it on here: http://api.jquery.com/val/

link|improve this answer
feedback

.val() Grabs the values of inputs.

http://api.jquery.com/val/

link|improve this answer
feedback

use

var textboxValue = $(...).val();

instead

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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