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

I can get the element like this $("#txtEmail") but I'm not sure how to get the actual value.

share|improve this question
5  
did u try $("txtEmail").val() – Perpetualcoder Jan 20 '09 at 23:20
hehehe...the problem was that I forgot to reference my function in the click event =) – Micah Jan 20 '09 at 23:24
25  
how can this question possibly have so many votes? – Neil McGuigan Mar 3 '11 at 20:13
10  
@el chief, because it's one of those things you forget easily when you've been away from jQuery for a month or two. – Ryan O'Neill Apr 27 '11 at 18:41
3  
OMW i have the same question!? i would get - 121 votes if i asked it lol – Pomster May 16 '12 at 12:43

6 Answers

up vote 346 down vote accepted

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:

$("#txtEmail").val()

You can also use the val(string) method to set that value:

$("#txtEmail").val("something")

Hope that helps!

share|improve this answer

Use the .val() method.

Also I think you meant to use $("#txtEmail") as $("txtEmail") returns elements of type <txtEmail> which you probably don't have.

See here at the jQuery documentation.

Also jQuery val() method.

share|improve this answer
3  
+1 for me making the exact same mistake – Kevin Laity Sep 16 '10 at 19:55

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.

share|improve this answer

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:

 var inp= $('input:radio[name=PatientPreviouslyReceivedDrug]:checked').val();

For textbox:

 var txt=$('input:text[name=DrugDurationLength]').val();
share|improve this answer
Be careful when posting copy and paste boilerplate/verbatim answers to multiple questions, these tend to be flagged as "spammy" by the community. If you're doing this then it usually means the questions are duplicates so flag them as such instead: stackoverflow.com/questions/1320088 – Kev Mar 8 '12 at 23:55
@Kev: I did'nt knew about such tagging. However, I am not sure if it was a duplicate at all during the time I had posted this solution. I couldn't find one in SO so posted. But yes going forward i will keep in mind and thanks for letting know. – yoosafinpace Apr 16 '12 at 17:17

There is a .val(); method that you can use.

share|improve this answer

Use the .val() method to get the actual value of the element you need.

share|improve this answer
Three years later, still goin' for it! – JerSchneid May 15 at 20:02

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.

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