I have this input line which I am trying to extract the text of the value attribute:
OR with jQuery you can get value from textbox like
var val1 = $(".class name").val();//to get value by class name var val1 = $("#id").val();//to get value by id
Both will do same.
Regards