What would be the best way to reset the selected item to default? I\'m using Select2 library and when using a normal button type=\"reset\", the value i
type=\"reset\"
For me it works only with any of these solutions
$(this).select2('val', null);
or
$(this).select2('val', '');