Scenario: I have an html page named main.html with 3 iframes with id's as left, middle and right.
We have 3 separate html pages named leftsection.html, middlesection.html and rightsection.html.
The left iframe points its src to leftsection.html, middle iframe points to middlesection.html and right iframe pointing to rightsection.html.
All the three iframes have their respective scrollbars and data is loaded dynamically using lazy loading. Here I need to invoke method1 on scroll of left iframe, method2 on scroll of middle iframe and method3 onscroll of right iframe.
Issue: How to invoke method1 onscroll of left iframe, method2 onscroll of middle iframe and method3 onscroll of right iframe?
Note:
The scroll bar used is a jQuery scroll bar and not the default scrollbar.
Any help would be great.