Can someone please explain how to get the value of a HTML text box using JQuery?
You can use $('#your_text_box_id').val();
$('#your_text_box_id').val();
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
You can use
$('#your_text_box_id').val();