Ver Mensaje Individual
  #12 (permalink)  
Antiguo 10/04/2015, 12:30
BlackJccl1
 
Fecha de Ingreso: abril-2015
Mensajes: 304
Antigüedad: 9 años, 1 mes
Puntos: 2
Respuesta: Comparar Fechas con Datapicker de jquery

Hola alexis gracias por contestas y darte el tiempo de corregirme lo probe pero no me carga asi lo estoy colocando no se si estoy haciendo algo masl
Código:
    $( "#fecharcon" ).datepicker({
      onSelect: function(){
        inicio = $(this).datepicker("getDate");
        final = $(this).datepicker("getDate");
        final.setDate(final.getDate()+2);
        $("#fecharpc").datepicker({
          minDate: inicio,
          maxDate: final,
        });
      }
    });