Alpha1
Well-known member
From a previous import I have a lot of posts with the following code in it:
Is there a way to batch remove this through a query?
If this is not possible through a query: is there another way?
Code:
<!--
var SymRealOnLoad;
var SymReal;
Sym()
{
window.open = SymWinOpen;
if(SymReal != null)
SymReal();
}
SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymReal = window.;
window. = Sym;
}
SymRealOnLoad = window.onload;
window.onload = SymOnLoad;
//-->
<!--
var SymRealOnLoad;
var SymReal;
Sym()
{
window.open = SymWinOpen;
if(SymReal != null)
SymReal();
}
SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymReal = window.;
window. = Sym;
}
SymRealOnLoad = window.onload;
window.onload = SymOnLoad;
//-->
If this is not possible through a query: is there another way?