I am making an AJAX Load call to retrieve some data from the server in the form of HTML . Some of this data contains "<br />" elements but it appears the AJAX call is encoding this data on the return so instead of seeing:
Line1
Line2
I see:
Line1<br />Line2 (b/c the <br /> is returned as <br />)
Is there someway I can disable the enoding.
Thanks,
Joe