Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm 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')

share|improve this question
Everything is on the same domain. -- just in case – BoDiE2003 Jun 24 '10 at 20:14

2 Answers

up vote 2 down vote accepted
function updateEmployerBox(){
    var div=$('employerBox');
    var url='<%=appRootPath%>/userBoxHome.asp?isEmployer=true&ajaxLogin=home';
    var options = {
        method:'get',
        onSuccess: function(transport){
            div.innerHTML=transport.responseText;
        },
        onFailure: function(transport){
            alert('Failed '+transport.responseText);
        }
    };//end options
    new Ajax.Request(url,options);
}
share|improve this answer
"Ajax.Request" is this Prototype? Just curious, a quick look on Google seems to think so. – sworoc Jun 25 '10 at 18:40
It is prototype. The question is tagged as such, is this tag incorrect? – stormdrain Jun 25 '10 at 19:01

You might want to check this out:

http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.