简体   繁体   中英

Toggle not working with DataTable responsive

This is how I am coding:

$(document).ready(function () {

    $("[id^=btnToggle]").click(function () {
        $('#infoToggle' + this.id.match(/\d+$/)[0]).toggle();
    });

    $('#dataTables-example').DataTable({
        responsive: true
    });

});

Here this code $("[id^=btnToggle]") is not working, but when I remove $('#dataTables-example') it is working fine.

I tried reversing their positions, I tried using separate document ready function, it did not work.

Please let me know how to fix this?

Thanks

The dom( #dataTables-example ) is modified when after calling the datatable event. due to which inner elements no more have previously attached events .You need to use event delegation in this case:

 $("body").on('click','[id^=btnToggle]',function () {
    $('#infoToggle' + this.id.match(/\d+$/)[0]).toggle();
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM