====== TIPS ====== ===== How to make JavaScript execute after page load? ===== https://stackoverflow.com/questions/807878/how-to-make-javascript-execute-after-page-load __These solutions will work:__ As mentioned in comments use defer: or or document.onload = function ... or even window.onload = function ... //Note that the last option is a better way to go since it is unobstrusive and is considered more standard.// ---- **Example** {{tag>tips js javascript}}