vote up 0 vote down star
1

Is there anyway I can get the value of a text field without posting a form. I would like to use the value somewhere else in the same page.

flag

3 Answers

vote up 2 vote down check

The answer is to use some sort of client-side scripting.

With plain old Javascript, if your text field has ID 'textField':

document.getElementById('textField').value;

Or with jQuery:

$('#textField').text();
link|flag
thanks, that what I was looking for. – mnml Oct 8 at 14:45
vote up 0 vote down

You can call a javascript function on any events (By example when your text field loose focus) and get the text field value by using the value property.

link|flag
vote up 1 vote down

You can use JavaScript. textarea elements have a value property that holds whatever text is in them.

link|flag

Your Answer

Get an OpenID
or

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