target="_blank"
target="_blank"
Out of context: Reply #28
- Started
- Last post
- 29 Responses
- instantok0
to get travis's script to work you need to add this (if it displays) before the js in the previously linked file:
// onLoadListener
onLoadFuncs = new Array();
function addOnLoad(func){
onLoadFuncs[onLoadFuncs.length] = func;
}
function runOnLoad(){
for(i in onLoadFuncs){
eval(onLoadFuncs[i]+"()");
}
}
window.onload = runOnLoad;