how get value in jquery 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: jquery value of input

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

Example 3: jquery this value

$( "input" )
    var value = $( this ).val();

Example 4: jquery get value of element

// Get the value from id thisElement
$("#thisElement"). val();

Tags:

Html Example