i am trying to bind an event when user selected an item from <select>
not necessary changed from the default.
$(select).change();
only works if the item was changed.
i wonder if there is something that works by selecting one of the options even if its the same default option.
$('#page_body').on('select', '.pop_pin_select', function() {
});
This is what i try so far but it wont work.