2
This script gives error:
<script>
$(document).ready(function () {
$('#dataSolicitacao').datepicker({
format: "DD/MM/yyyy",
language: "pt-BR",
minViewMode: 0;
orientation: auto
});
});
</script>
Gives semicolon error after line minViewMode: 0;
saying that missing a key }
And then there’s an error in that last key minViewMode: 0;
saying syntax error.
How do I fix this script?
change the semicolon by comma.
– Ivan Ferrer