jquery get value of element

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

Also in JavaScript: