vote up 0 vote down star

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?

flag

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

2 Answers

vote up 0 vote down check

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|flag
vote up 6 vote down

Use body:

$('body').replaceWith(data);
link|flag

Your Answer

Get an OpenID
or

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