ой да, что то я не то написал
onload = function get_n() {
url: '/X'), // эта ссылка чисто для примера
if(!document.getElementById){
if(document.all)
document.getElementById=function(){
if(typeof document.all[arguments[0]]!="undefined") // вот так
return document.all[arguments[0]]
else
return null
}
else if(document.layers)
document.getElementById=function(){
if(typeof document[arguments[0]]!="undefined")
return document[arguments[0]]
else
return null
}
}
dataType: 'text',
success: function(data) {
var script = data.toString();
var script = script.replace('document.write','$("#numberY").html');
}
}