I have a div in one page that is being fulfilled with dynamic content, but after searching in EVERY corner of the website theme files, I wasn't able to find out which is the damn function that is being called to produce this content.
Searching through the files and folders for the div ID or class returns nothing, so I assume the content is being load dynamically from another dynamically loaded content and I need to know which.
Is there any way in JavaScript that I can seek from where dynamic content is being loaded? Using the console, for example.
Thank you!
I just learned that you can use Ctrl + Shift + F from the console debugger and it will make a global search through the loaded files. And as I suspected, the function was being loaded from another dynamically loaded content.
Thank you for the views, guys!