In a situation I'm facing, an AngularJS website is not loading jQuery (except for jQLite). My goal is to monitor events with particular parameters.
Unfortunately, I'm unable to make any changes to the source code. However, by examining the event in the developer console, it appears to be a POST event directed to a specific URL: https://example.com/ajax/leadgen
I am specifically interested in detecting when this POST event includes certain parameters such as: - leadType = 25 - pageID = abcd
I have explored various possibilities using addEventListener, but implementing this solution in my current scenario has proven to be challenging.