الرئيسية
اتصل بنا
أعلن لدينا
|
|
|
|
عبداللطيف جميل للالكترونيات
|
|
|
|
|
-1) {
var s = source.indexOf("", e);
// Add to scripts array
scripts.push(source.substring(s_e + 1, e));
// Strip from source
source = source.substring(0, s) + source.substring(e_e + 1);
}
// Loop through every script collected and eval it
for (var i = 0; i < scripts.length; i++) {
try {
eval(scripts[i]);
}
catch (ex) {
// do what you want here when a script fails
}
}
// Return the cleaned source
return source;
}