Home

Published

- 1 min read

how to get value in jquery for textbox

img of how to get value in jquery for textbox

The solution for this is noted below

how to get value in jquery for textbox

Solution

   //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')

Try other methods by searching on the site. That is if this doesn’t work