jQuery unselect option

PHOTO EMBED

Fri Jun 11 2021 20:32:42 GMT+0000 (Coordinated Universal Time)

Saved by @jeromew #javascript

//solution 1
$("option:selected").removeAttr("selected");

//solution 2
$("option:selected").prop("selected", false); 
content_copyCOPY