I loaded some async html with
$.ajax({
url: target,
beforeSend: function() {
},
success: function(html) {
targetTabBox.html(html);
}
});
The url: target is a "page" returning a html fragment (some text and images). targetTabBox is a div
In IE all is well, but in firefox I don't get to see my images only the alt text. When I right click the image and do properties I see:
http://localhost:3000/Product/Slapen/Laken-en-deken/%5CFoto%5CCms%5Cgots-logo.gif Which is wrong, but:
When I look at the html with firebug I see:
<img src="\Foto\Cms\gots-logo.gif" alt="GOTS logo"/>
Which is as it should be!
What am I missing here?