up vote 1 down vote favorite
2
share [g+] share [fb]

My design of a page forces me to refresh the whole page with html that I have loaded via ajax.

$('html').replaceWith(data);

Gives me errors. Any ideas?

link|improve this question

Please post error and contents of data – Chad Grant Apr 27 '09 at 13:16
feedback

3 Answers

up vote 0 down vote accepted

Won't the html tag contain the script that is doing the replacing? If you're using the body tag make sure your html fits.

link|improve this answer
feedback

Use body:

$('body').replaceWith(data);
link|improve this answer
1  
Although this will not replace the head section, which might be required to load the necessary Javascript and CSS files necessary to render the page properly. – ngeek Jun 28 '10 at 21:50
Actually, jQuery does do the work of execute any embedded javascript. CSS stylesheets will absolutely be applied. Just realize that the CSS stylesheets you've removed remain in the rulesets, they don't get removed. – altCognito Jun 29 '10 at 14:37
feedback

I had some issues with

$("body").replaceWith(newPage)

giving me some weird css problems, but this wored fine:

$("body").html(newPage);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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