najlepsiwebdesigner / foundation-datepicker

Foundation datepicker jQuery plugin
http://foundation-datepicker.peterbeno.com
Apache License 2.0
442 stars 269 forks source link

How to unbind datepicker #238

Open caineboelhouwer opened 5 years ago

caineboelhouwer commented 5 years ago

Hi, is there a way to unbind the datepicker event?

Wimmind commented 3 years ago

@Caine-Boelhouwer

$(this).fdatepicker(/*options*/)
        .on('hide', function hide() {
          $(this).fdatepicker('remove');
          $(this).off('hide', hide);
        });

I deleted from DOM using remove Unbind event using off