Ver Mensaje Individual
  #7 (permalink)  
Antiguo 10/02/2010, 15:50
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 1 mes
Puntos: 101
Respuesta: Ajax dentro de ajax con jquery

A ver si queda claro:

Cita:
$(function() {
$("#tabs").tabs().find(".ui-tabs-nav");
});
jQuery(function($){
$("#Telefono").mask("999-9999");
$("#celular").mask("999-999999");
$("#Cedula").mask("9.999.999-9");
});
$(function() {
$('#f_nac').datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd',
yearRange: '1900:2050',
maxDate: '+0d'
});
});
$(function() {
$('#f_ing').datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd',
yearRange: '1900:2050',
maxDate: '+0d'
});
});
No tenes cuatro llamadas a document.ready?