International Calendar Customization
Customize your JavaScript calendar by adjusting text and setting the week's starting day to match international preferences.
Explore this customization on the JavaScript Calendar in action
Limpar
Feito
<html>
<script src="https://jsuites.net/v5/jsuites.js"></script>
<link rel="stylesheet" href="https://jsuites.net/v5/jsuites.css" type="text/css" />
<input id='calendar' />
<script>
// Create a calendar instance
jSuites.calendar(document.getElementById('calendar'), {
// Define the months in portuguese
months: ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],
// Define the months in portuguese
monthsFull: [
'Janeiro',
'Fevereiro',
'Março',
'Abril',
'Maio',
'Junho',
'Julho',
'Agosto',
'Setembro',
'Outubro',
'Novembro',
'Dezembro'
],
// Define the weekdays
weekdays: [
'Domingo',
'Segunda',
'Terça',
'Quarta',
'Quinta',
'Sexta',
'Sábado'
],
// Labels
textDone: 'Feito',
textReset: 'Limpar',
textUpdate: 'Atualizar',
// Weekday to start - Starts on Monday
startingDay: 1,
// Format
format: 'YYYY-Mon-DD',
});
</script>
</html>
More examples
Explore additional use cases for the jSuites JavaScript Calendar plugin: