Aqui solicitanto su valiosa ayuda con esto que trato hacer, les comento, quiero tomar el valor de un input text a traves de jquery, les aviso que no se mucho por no decir nada de jquery, anduve investigando y estructure un codigo pero no me funciona del todo, aca el codigo de mi archivo fecha.php:
Código HTML:
<html> <head> <link href="../fecha/js/jquery-ui-1.8.5.custom.css" rel="stylesheet" type="text/css"/> <script src="../fecha/js/jquery-1.4.2.min.js"></script> <script src="../fecha/js/jquery-ui-1.8.5.custom.min.js"></script> <script> $(document).ready(function(){ $("#datepicker").datepicker({ showOn: 'both', buttonImage: 'calendar.png', buttonImageOnly: true, changeYear: true, numberOfMonths: 1, onSelect: function(fecha_cumple, objDatepicker){ var fecha = $('#datepciker').val(); alert(fecha); var URL='../fecha/fecha.php?fecha='+fecha; } }); }) </script> </head> <body> <form action="fecha.php" method="post"> FECHA: <input type="text" id="datepicker" name="fecha" /> </form> <?PHP $fecha=$_POST['fecha']; echo $fecha; ?> </body> </html>
Gracias por su ayuda...