Leex Posted August 18, 2011 Report Share Posted August 18, 2011 Wie kann ich Javascript später parsen, sodass nicht alles beim sofort beim Seitenaufruf geladen wird? Link to comment Share on other sites More sharing options...
amilo Posted August 18, 2011 Report Share Posted August 18, 2011 Nimm das. MfG. Hansen Link to comment Share on other sites More sharing options...
Leex Posted August 18, 2011 Author Report Share Posted August 18, 2011 Hab ich auch schon gesehen. Nur weiß ich nicht ganz was ich ersetzen muss. Stimmt das?: <script type="text/javascript"> // Add a script element as a child of the body function downloadJSAtOnload() { var element = document.createElement("script"); element.src = "jquery.js"; element.src = "thickbox.js"; document.body.appendChild(element); } // Check for browser support of event handling capability if (window.addEventListener) window.addEventListener("load", downloadJSAtOnload, false); else if (window.attachEvent) window.attachEvent("onload", downloadJSAtOnload); else window.onload = downloadJSAtOnload; </script> und wo muss ich das reinschreiben? Link to comment Share on other sites More sharing options...
amilo Posted August 18, 2011 Report Share Posted August 18, 2011 Nee, da kommt der Pfad rein. Danach muss das ganze in die js.php deines Templates. Musst aber aufpassen, da einige Plugins die Javascript nutzen danach u.U. nicht mehr funktionieren. MfG. Hansen Link to comment Share on other sites More sharing options...
oldbear Posted August 20, 2011 Report Share Posted August 20, 2011 hallo, es gibt ja auch noch den Hook "index_tpl_bottom", der u.a. vom Google Analytics Plugin verwendet wird ..... Grüsse Link to comment Share on other sites More sharing options...
Leex Posted August 23, 2011 Author Report Share Posted August 23, 2011 was soll ich mit dem index_tpl_bottom anfangen? dort meine scripte einbinden? wenn ja werden diese dann später geladen? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.