This script gives error:
<script>
$(document).ready(function () {
$('#dataSolicitacao').datepicker({
format: "DD/MM/yyyy",
language: "pt-BR",
minViewMode: 0;
orientation: auto
});
});
</script>
Give semicolon error after line minViewMode: 0;
saying missing a key }
and then gives error in that last key minViewMode: 0;
saying syntax error .
How do I fix this script ?