Search code examples
odoo

JQuery window scroll event not working for odoo 14


**JQuery window scroll event not working for odoo 14 **

The below code is not executed in the Odoo v14

`$(window).scroll(function() {
 console.log("scroll event")
});`

odoo v14 this event is not execute


Solution

  • I found a solution but it is only working on the first div#wrapwrap and not working with any other.

    $('#wrapwrap').scroll(function() {
    }