Hi, > I thought that you may find this plugin interesting: > > http://www.gnucitizen.org/projects/jquery-include/
Your code creates a script tag via DOM. That does not work on some Safari Versions. To get around that you have to use a XMLHttpRequest and eval(), which gives you a real pain in your backside with IE (use window.executeScript instead of eval, etc.) If you whant to see a solution that works in most cases, look at www.jsPax.org. JsPax is a full package system, but most of its code doesn't deal with packages, but with dynamically loading scripts. Christof

