how to 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: javascript jquery get form field value
$(document).ready(function(){
$("#buttonSet").click(function () {
$("#txtBox").val("Amit");
$("input:radio").val(["male"]);
$("#buttonGet").removeAttr('disabled');
});
$("#buttonGet").click(function () {
$("#result").html(
$("#txtBox").val() + "<br/>" +
$("input:radio[name=rd]:checked").val()
);
});
});
Example 4: print value in jquery
//To view a value as alert
alert("Hi");
//To view a value or array in console
console.log("Hi");
Example 5: jquery set input value
$("button").click(function(){
$("input:text").val("Glenn Quagmire");
})