I have created an select box using dd:
<select id="Size1" class="mydds" style="width:180px;">
<option value="/p/1">1</option>
<option value="/p/2">2</option>
<option value="/p/3">3</option>
</select>
Inside (document).ready
I added the following line:
$(".mydds").msDropDown();
I tried to bind onchange
using
$('.mydds').on('change',function() {
alert("hiiiii");
});
But not able to bind the event can you help me on this?
;)
PD: Documentation msDropdown