Muchas Gracias
Código Javascript:
Ver original
$(document).ready(function() { $("#boton").live('click',function(event) { $("#consulta").load('index.php?p=all_reservas&borrar_sessiones=1', function(){ $('.link_datos').hide(); $('.datos').hover(function() { $(this).children('.link_datos').show(); }, function() { $(this).children('.link_datos').hide(); }); }); }); $("#fecha").click(function(event) { $("#consulta").load('index.php?p=fecha&c=' + $("#date").val()); }); $("#entre").click(function(event) { $("#consulta").load('index.php?p=fechasentre&d=' + $("#date2").val()+ '&e=' + $("#date3").val()); });