Is it possible to bind select option On select and not On change

gardnercopper

New Member
i am trying to bind an event when user selected an item from \[code\]<select>\[/code\]not necessary changed from the default.\[code\]$(select).change();\[/code\] 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.\[code\]$('#page_body').on('select', '.pop_pin_select', function() {});\[/code\]This is what i try so far but it wont work.
 
Back
Top