Question:Which of the following is the correct way to get the value of a textbox using id in jQuery?
A $(“.textbox”).text() B $(“#textbox”).val() C $(“.textbox”).val() D $(“#textbox”).text()
+ AnswerB
+ Report