I’d like to make a database insert each time a user reaches a section (there are multiple ones on the page) on scroll down a webpage.
Any ideas on how this might be done (in php) with Wappler?
I’d like to make a database insert each time a user reaches a section (there are multiple ones on the page) on scroll down a webpage.
Any ideas on how this might be done (in php) with Wappler?
I am not sure if scroll or browser components of Wappler have any such capability, so the only option that remains is JS.
You can bind to the window scroll event method. In the function, you can check the scroll position of page based on a logic similar to https://stackoverflow.com/q/9979827, and then call a SC with dmx.parse and required params.
Thanks sid
This is a great reference from sid!
Thank You!
@George , what about extending the browser extension to be able to fire events based on scroll position? That would help a lot! Thanks