is there anyway i could trigger a change event on select box on page load and select a particular option.
Also the function executed by adding the trigger after bin
Use val() to change to the value (not the text) and trigger() to manually fire the event.
val()
trigger()
The change event handler must be declared before the trigger.
Here's a sample
$('.check').change(function(){ var data= $(this).val(); alert(data); }); $('.check') .val('two') .trigger('change');