This is a simple script to select first option of a select-box using jquery
$('button').click(function(){ $("#CardCountry").val($("#CardCountry option:first").val()); });
Comments
Post a Comment