Dynamically calling _satellite.pageBottom()
Hi team,
My requirement is, in the head tag, will be loading adobe tracking js file..
I don't wanna include assignment of digitalData object and calling of _satellite.pageBottom() in body tag...
After the load of DOM, in another Js file, i will be doing assignment of digitalData and calling of _satellite.pageBottom()
If i do it in this way, 2 times call is going to metrics...
1st time from DomReady in adobe tracking js file..(by the time domready gets called, as there is no script of calling pageBottom in document)...its firing pageBottom....
2nd time when i call in external js file...
Can we eliminate DomReady call, So, that the call which i do in my js file will alone be calling pageBottom....
The reason, why i do it in separate js file is, document title will be loading will be loaded dynamically in our application(not in the initial page load)...
We change document load after DOM loading...So, we wanna assign digital Obj once document title gets updated...
Can someone help me in this...