im working with prototype.js and thickbox trying to insert the image data from
http://software.hixie.ch/utilities/cgi/data/data into the js.i wanted to change
$("body").append("<div id='TB_load'><div id='TB_loadContent'><img src='pictures/circle_animation.gif' /></div></div>");
to
$("body").append('<div id='TB_load'><div id='TB_loadContent'><img src="image data" /></div></div>');
the only problem is the image data has a bunch of single quote marks in it.
anyone has an idea on what i should do here?