JQuery Developer Question:

Download Job Interview Questions and Answers PDF

How to select combobox select value and text using Jquery?

JQuery Developer Interview Question
JQuery Developer Interview Question

Answer:

Example:
var StateID = $("#StateCbx").val(); // Or you can use it $("#iStateID").val();
var StateName = $("#StateCbx option:selected").text();
alert("Selected combobox text is= " + StateName + " and value is= " + StateID);

Download JQuery Developer Interview Questions And Answers PDF

Previous QuestionNext Question
What is use of noConflict() method in Jquery?Can we call C# codebehind method using Jquery?