
Originally Posted by
cancanoff
hi
Probably wont use the script, as I am worry that others users might experience the same.....
sigh
That is, of course, your choice but, any script can be made to not work if a user's computer and/or programs are configured in a certain way or ways. If it is just a browser setting, then you probably are using a non-standard setting. That would mean that most users wouldn't have the problem you have. In fact, any popular script like this one in the DD library probably will work for most users in the browsers that it is rated for. If it doesn't, we get numerous bug reports.
One thing you could try with this script (if it isn't a browser setting problem) would be to change:
Code:
function ajaxpage(url, containerid, targetobj){
var page_request = false
if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
}
catch (e){
try{
page_request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else
return false
to:
Code:
function ajaxpage(url, containerid, targetobj){
var page_request = false
if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
}
catch (e){
try{
page_request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else
return false
Bookmarks