jQuery Tutorial plus Question:

Tell me how to select combobox select value and text using Jquery?

Tweet Share WhatsApp

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 PDF Read All 91 jQuery Questions
Previous QuestionNext Question
What is the use of noConflict() method in Jquery?Can we call C# codebehind method using Jquery?