[jQuery] img src attribute after append(), html()...
When I call
$('#mydiv').append('<img src="a/b/image.jpg" />
');
I get
<div id="mydiv">
<img src="http://localhost:53072/pathtocurrentpage/a/b/
image.jpg" />
</div>
Which is not what I want.
Can anyone tell me why I get this or even how I can stop jquery from
changing my src attribute?
Thanks in advance.