get input text value jquery code example
Example 1: how to get value in jquery for textbox
//If you've got an input with an id of txtEmail you can use
//the following code to access the value of the text box:
$("#txtEmail").val()
//You can also use the val(string) method to set that value:
$("#txtEmail").val("something")
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 get text of input
$('input').val();
Example 5: get input value jquery
//Get
var bla = $('#txt_name').val();
//Set
$('#txt_name').val(bla);