jquey get value 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: $.get jquery return value
function showGetResult( name )
{
var result = null;
var scriptUrl = "somefile.php?name=" + name;
$.ajax({
url: scriptUrl,
type: 'get',
dataType: 'html',
async: false,
success: function(data) {
result = data;
}
});
return result;
}