I've trawled the web looking for a solution to this one.
You can see the issue in action here: http://jsbin.com/nomij/5/edit
Basically each time the dropkick change event is fired I need to access the value of the selected option, the documentation uses this example:-
$('.change').dropkick({
change: function (value, label) {
alert('You picked: ' + label + ':' + value);
}
});
Both value and label return undefined. Any ideas where I am going wrong?
Dropkick documentation: https://github.com/Robdel12/DropKick/blob/master/readme.md