I want to trigger the change event of dropdown in $(document).ready using jquery.
I have a cascading dropdown for country and state in user details page. how can i s
Try this:
$('#id').change();
Works for me.
On one line together with setting the value: $('#id').val(16).change();
$('#id').val(16).change();