how to get text box value in jQuery
how to get text box value in jQuery Anonymous User 1156 18 Jun 2018 how to get text box value in jQuery
Value() in jquery :
Use this .val() method:
If you've got an input with an id of #mindstick you can use the following code to access the value of the text box:
$("#Mindstick").val()You can also use the val(string) method to set that value:
$("#Mindstick").val("Software")
or
Use this code for using class :
Happy Coding :)