OK here is the code:
var poo="http://www.bla.com/?"+az;
var image = document.createElement('img');
image.src="http://www.bla.com/images/go-bottom1.gif";
var z = document.createElement('a');
z.href=poo;
var txt = document.createTextNode(image);
z.appendChild(txt);
document.getElementById('Title').appendChild(z);}
temp();
It is not working however, it is giving me a link which says "[object XPCNativeWrapper [object HTMLImageElement]]" instead of giving me a linked image. Please help... Thanks.
It needs to be in javascript because I am using greasemonkey so I can't just use html.
Thanks.