I've got the next code:
$("#fecha_fin, #bf_fin").click(function(){
if( $("#fecha_inicio").val() == "" ){
crearModal( "Alerta",
getMessage("/js/buscador/buscadores.js", "11", codidi, 'Por favor, seleccione la fecha de inicio del hotel.'));
$("#fecha_fin").val("");
}else if(($("#fecha_fin").val() == "") || (this.id == "bf_fin")){
var diasASumar = dif_dias("hoy", "fecha_inicio") + 1;
$("#fecha_fin").datepicker("option", "defaultDate", +diasASumar);
$("#fecha_fin").datepicker("show");
}
});
$("#fecha_fin").focus(function(){
if( $("#fecha_inicio").val() == "" ){
crearModal( "Alerta",
getMessage("/js/buscador/buscadores.js", "11", codidi, 'Por favor, seleccione la fecha de inicio del hotel.'));
$("#fecha_fin").val("");
}else if(($("#fecha_fin").val() == "") || (this.id == "bf_fin")){
var diasASumar = dif_dias("hoy", "fecha_inicio") + 1;
$("#fecha_fin").datepicker("option", "defaultDate", +diasASumar);
$("#fecha_fin").datepicker("show");
}
});
The fact is that when the focus event occurs, instead of the click one, the line making the defaultDate doesn't works. No error, simply it doesn't make what it is supposed to do. But when the event is the click one, it goes perfect.
Can anyone give a direction, please?
crearModal,dif_diasdo – Samuel Liew Nov 2 '11 at 12:45