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\"
you can used:
$("#d").val(null).trigger("change");
It's very simple and work right! If use with reset button:
$('#btnReset').click(function() { $("#d").val(null).trigger("change"); });