I have the following code:
<div id="leftDiv" style="float:left; height: 300px; width: 420px;background-color:transparent; position: relative">
<div style="position:absolute; left:141px; top:180px; width: 319px; z-index:1"><b><%=tmpJsonValue2 %></b></div>
<div style="position:absolute; left:320px; top:180px; width: 319px; z-index:1"><b><%=tmpJsonValue9 %></b></div>
<img id="leftImg" style="width:100%; height:100%; z-index:-1; right: 1124px; top: 9px;" src= "xxx.jpg" />
</div>
Which displays an image and on top of it places the info from the variables tmpJsonValue2 and tmpJsonValue9.
I would like to be able to click on the image and print it with the dynamic values of the variables on top of the image, exactly the way it appears on the browser. Any suggestions?