• Super User

    bootstrap datepicker, come posso aggiungere le opzioni?

    Salve a tutti
    Vorrei poter aggiungere il formato giorno/mese/anno a questo calendario, ma non capisco dove devo aggiungere l'opzione format: 'mm/dd/yyyy' nel seguente codice.

    
    <html>
    	<head>
    	<link rel="stylesheet" href="css/bootstrap.css">
    	<link rel="stylesheet" href="css/datepicker.css">
    	<script src="js/main.js"></script>
    	<script src="js/bootstrap-datepicker.js"></script>
    	<script>
    	$(function(){
    	$('.datepicker').datepicker();
    	});
    	</script>
    		<body>
    		<div class="well">
    		Data di nascita: <input class="datepicker" type="text" name="date">
    		</div>
    		</body>
    	</head>
    </html>
    
    

    Ho provato subito sotto a $('.datepicker').datepicker(); ma non va
    Sapete come potrei fare?
    Grazie


  • User

    $('.datepicker').datepicker({ format**:** 'mm/dd/yyyy', startDate**:** '-3d'});