I need to get the current value of the WebDropDown.
I wrote the following code.
I get exception in get_currentValue: "object does not support this property or method"
Hello drpoalim,
You should use “$find(“<your dropdown ID>”);” function to get reference to “WebDropDown” on Client-Side:
var combo = $find(“WebDropDown1”);
…
Then you can use get_currentValue() function.