jquery get input text value code example

Example 1: how to get a value using jquery

//for imput field given in HTML

<input type="text" id="myid" class="myclass" >
  
// Using ID to find value
  
$("#myid").val();

// Using Class to find value

$(".myclass").val();

Example 2: how to get value in jquery for textbox

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

Example 3: jquery value of input

$("#textInput").val() // To get value of element textInput

Example 4: get value of input jqueyr

var str = $("#myInput"). val();

Example 5: jquery get text of input

$('input').val();