Skip to content

Instantly share code, notes, and snippets.

@kikegarcia
Last active December 28, 2015 18:29
Show Gist options
  • Save kikegarcia/7543905 to your computer and use it in GitHub Desktop.
Save kikegarcia/7543905 to your computer and use it in GitHub Desktop.
Gets value and uses it in a Select Option as default
<script>
function getval(sel) {
$('#stars').val(sel.value);
}
$(document).ready(function() {
var valorestrella = $('#stars').val()-1;
$('#starsrating option:eq('+valorestrella+')').prop('selected', true);
$(".center_box_content").css("background-color","#47494c");
$(".mgrid_table .highlight_light:odd").css("background-color","#f6f6f6");
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment