Hola gente, estoy teniendo problemas cuando trabajo con xajax y jquery. Quiero utilizar una máscara para las fechas que me tome las barras. Les paso el código para ver si alguien puede ayudarme.
<?php
require_once("/xajax/xajax_core/xajax.inc.php");
//instancio el objeto de la clase xajax
$xajax = new xajax();
function mostrar_frm(){
//instanciamos el objeto para generar la respuesta con ajax
$respuesta = new xajaxResponse();
$salida='<form id="frmprueba" name="frmprueba" method="post" action="#">
<table>
<tr>
<td>Date</td>
<td>
<input type="text" id="fecha" name="fecha" size="10" maxlength="10" value="">
</td>
<td>dd/mm/aaaa</td>
</tr>
</table>
</form>';
$respuesta->assign("respuesta","innerHTML",$salida);
return $respuesta;
}
$xajax->registerFunction("mostrar_frm");
$xajax->processRequest();
$xajax_js = $xajax->getJavascript('/xajax');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<?PHP
//en el head indicamos el objeto xajax se encargue de generar el javascript necesario
$xajax->printJavascript("/xajax");
?>
</head>
<body>
<div id="respuesta"></div>
<script language="JavaScript" type="text/javascript">
xajax_mostrar_frm();
</script>
<script src="/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="/jquery.maskedinput.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function($) {
$('#fecha').mask('99/99/9999');
});
</script>
</body>
</html>
Cuando incorporo xajax no me funciona. Si comento lo del xajax y agrego el formulario dentro del body y funciona, pero necesito hacerlo con xajax.
Muchas gracias de antemano.
Saludos