drgullin / icheck

Highly customizable checkboxes and radio buttons (jQuery & Zepto)
http://fronteed.com/iCheck
7.39k stars 1.63k forks source link

ifChecked event not trigger when browser back button clicked #313

Open marianinho100 opened 8 years ago

marianinho100 commented 8 years ago

in Chrome 47: When we go to the next site and then back to the previous one, the ifChecked events are not triggerred in jquery on handlers. Example:

$(document).ready(function() { 
  $('input').iCheck({
    checkboxClass: 'icheckbox_square-orange',
    radioClass: 'iradio_square-orange',
  });

  $('.filter_checkbox').on('ifChecked', function(event) {
    alert('TEST');  // <- fired not up after click on back button in browser
  });
});
q-jack commented 7 years ago

same here. Any progress on this?