I can get the element like this $("#txtEmail") but I'm not sure how to get the actual value.
|
|
I think there's a .val() method Edit: If you've got an input with an id of txtEmail you should be able to use the following code to access the value of the text box:
You can also use the val(string) method to set that value:
Hope that helps! |
|||
|
|
|
Use the .val() method. Also I think you meant to use See here at the jQuery documentation. Also jQuery val() method. |
|||||
|
|
Noticed your comment about using it for email validation and needing a plugin, the validation plugin may help you, its located at http://bassistance.de/jquery-plugins/jquery-plugin-validation/, it comes with a e-mail rule as well. |
|||
|
|
|
Possible Duplicate: Just Additional Info which took me long time to find.what if you were using the field name and not id for identifying the form field. You do it like this: For radio button:
For textbox:
|
|||||
|
|
Use the .val() method to get the actual value of the element you need. |
|||
|
|
protected by Community♦ Apr 3 at 6:10
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.