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?