I am cloning a select element which trigger a custom event "combobox".
when I clone the select element, custom events are not cloned.
<select id="country">
<option value="Australia">Australia</otpion>
<option value="China">China</otpion>
<option value="Russia">Russia</otpion>
</select>
$('#country').change(function() {
$(this).trigger($.Event('combochange'));
});
$('#country').bind('combochange',function() {
alert($(this).val());
var clone = $(this).clone(true);
clone.appendTo('body');
clone.change();
});