Im using a simple select list and the jquery.dropkick library to make it beautiful. Now i want to change that dropkick content after the corresponding select element has been ch
I have faced the same issue and couldn't find a solution, but finally succeeded in getting this hack work.
$select = $("#select1"); $select.removeData("dropkick"); $("#dk_container_select1").remove(); $select.append("opt4"); $select.append("opt5"); $select.dropkick();