How can I use jQuery to call methods on a RadComboBox?
For example, the following code works fine
but the following throws the error "Object doesn't support this property or method" when calling dropJQ.get_value()
Any Ideas?
For example, the following code works fine
var dropFind = $find("<%= RadComboBox1.ClientID %>"); |
var valueFind = dropFind.get_value(); |
but the following throws the error "Object doesn't support this property or method" when calling dropJQ.get_value()
var dropJQ = $('#' + "<%= RadComboBox1.ClientID %>"); |
var valueJQ = dropJQ.get_value(); |
Any Ideas?