how to get a value using jquery

JavaScript
$("#textInput").val() // To get value of element textInput//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();
 
Source

Also in JavaScript: