value of input 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: get value of input jqueyr

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

Example 4: jquery set input value

$("button").click(function(){
  $("input:text").val("Glenn Quagmire");
 })

Example 5: jquery set textbox value

$.get('compz.php?prodid=' + x + '&qbuys=' + y, function(data) {
    $('#subtotal').val(data);
});

Example 6: get input value jquery

//Get
var bla = $('#txt_name').val();

//Set
$('#txt_name').val(bla);