Hi
I have a javascript function like below to call this function when dropdown value changes.
$('#Dropdownid#').change(fucntion()
{
do something
}
)
This above function is calling and working when i change the value of dropdown phisically and manually.
Issue - The Above change function is not calling when i set a value(like below) to 'Dropdownid' from another javascript function.
$('#Dropdownid').value('All')
what i should do call Change javascript function when i set value(selected) to dropdrop from the code.
Regards,
Sunil