To Download the cookbook, please fill in the form below.
}); //takes in a string value and populates it for a select list if an option with value exists $.fn.set_select = function(val) { $(this).find("option").each(function () { if($(this).attr("value") == val && $(this).attr("value") != "") { $(this).attr("selected", true); } }); };