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?

link|improve this question

60% accept rate
We do not know what your functions crearModal, dif_dias do – Samuel Liew Nov 2 '11 at 12:45
Ok, I'll make an edit of the code, deleting what it isn't intended to be. – elvenbyte Nov 2 '11 at 14:13
feedback

2 Answers

The most clean code is as follows:

$("#fecha_fin, #bf_fin").click(function(){
        var diasASumar = dif_dias("hoy", "fecha_inicio") + 1;
        $("#fecha_fin").datepicker("option", "defaultDate", +diasASumar);
        $("#fecha_fin").datepicker("show");
    }
});

$("#fecha_fin").focus(function(){
        var diasASumar = dif_dias("hoy", "fecha_inicio") + 1;
        $("#fecha_fin").datepicker("option", "defaultDate", +diasASumar);
        $("#fecha_fin").datepicker("show");
    }
});
link|improve this answer
feedback

You have a + sign before your variable diasASumar. That is not required.

link|improve this answer
The JQuery documentation says I must put that + sign before de days I want to establish. Anyway, it doesn't fix the problem. – elvenbyte Nov 2 '11 at 14:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.