jQuery doesn't work after content is loaded via AJAX

后端 未结 9 1082
野的像风
野的像风 2020-11-22 15:21

On this page I have a jQuery popup window and thumbnail resizable images. If I mouse over on the thumbnails, the images are resizing perfectly. Also, when I click on the big

9条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 15:43

    This worked for me,

    instead of:

    $(document).ready(function(){
    //code
    });
    

    I did:

    $(document).on('mouseenter', function(){
    //code
    });
    

提交回复
热议问题