I'm trying to build a HTML string in the following way:
htmlString = '<html>';
var headerString = "image1";
var sImage = "Android_images/"+headerString+".png";
htmlString += '<img src='+sImage+' />';
htmlString = '</html>';
I need to dynamically append a image string, but it shows:
<img src=Android_images/dfdfd.png />