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

9 s
9

There’s a .val() method:

If you’ve got an input with an id of txtEmail you can 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")

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *