When I do the following:
var foo = '<p><img src="tracking.pixel.outside.my.domain /></p>';
$("#outputdiv").html(foo);
This is what shows up in outputdiv: <p></p>
Is there some reason that this shouldn't work? I'm running out of ideas. I've also tried using innerHTML, to no avail.
src="tracking.pixel.outside.my.domain"- missing"at the end?"on theimg srctag, but not sure if that's the problem?