videva
Member
- Aug 25, 2020
- 75
- 53
- 18
Thanks bro, i will try that approach of de-activating cloudflare and see whether it fixes the issue.
you must put it inside script tag like this.@Milberg I did place the code before the </body> in footer.php file
pls check the screenshot here - https://ibb.co/xjGnN0H
can you verify if any mistakes ?
JavaScript:
<script>
function removeOnload(func)
{
if(window.addEventListener)
window.removeEventListener('load', func, false);
else if(window.attachEvent)
window.detachEvent('onload', func);
}
window.onload = removeOnload(parseJSAtOnload);
</script>
if you put the script above, then if you see in view-source the function parseJSAtOnload will still exist.
the code i provided above just only to make the function parseJSAtOnload will not loaded
Last edited: