Tengo el siguiente código y no funciona el datepicker. ¿Por qué? Gracias.
Código HTML:
Ver original
<!doctype html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="../../../Estilos/Estilos.css"> <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <script> $(function() { $( "#CalendarioFechaCreacion" ).datepicker({ changeMonth: true, changeYear: true }); }); </script> </head> <body> <?php // incluyo la cabecera porque no me han echado antes include ("../../Cabecera/CabeceraRol".$_SESSION['RolUsuario'].".php"); ?> <fieldset class="FieldsetNormal"> <div class="LineaCampos"> <div class="Campos4"> <input type="text" id="CalendarioFechaCreacion" name="FechaCreacion" class="InputText"> </div> </div> <div class="Botonera"> </div> </fieldset> </body> </html>