Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Created February 17, 2015 15:17
Show Gist options
  • Select an option

  • Save DWboutin/45bcfb40855ec378b4d6 to your computer and use it in GitHub Desktop.

Select an option

Save DWboutin/45bcfb40855ec378b4d6 to your computer and use it in GitHub Desktop.
Select won't change on F5 fix
$('select').each(function(){
var select = $(this);
var html = select[0].outerHTML;
var val = $(html).children('option:selected').val();
select.val(val);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment