Im using stuff like
document.body.innerHTML
but I dont need my page source, I need it to get an external page source, since
new Ajax.Updater ({success:'employerBox'}, '<%=appRootPath%>/userBoxHome.asp?isEmployer=true&ajaxLogin=home', {evalScripts: true});
Is not working in IE and I need div employerBox
to get updated with the content from /userBoxHome.asp?isEmployer=true&ajaxLogin=home
Any suggestions please or any functions that Im missing?
My idea, I know the code is wrong, is to do something like document.body.innerHTML('userBoxHome.asp?isEmployer=true&ajaxLogin=home')
Thank you