Hi Jim,
As you notice yourself you are almost there. Your only flaw is that
exhibit leaves the lens as it is, it does its magic on a clone of the
lens and it is the clone that you see on your screen. As you will
realize cloning and IDs don't go together. So you can't use the id
attribute to set content_vlue, you must use some other way. The clone
is in a div with a class attribute that contains "simileAjax-bubble-
contentContainer". So if you replace your line:
var content_vlue = document.getElementById("lens_view").innerHTML;
with:
var content_vlue = $("div.simileAjax-bubble-contentContainer")
[0].innerHTML;
you will hopefully be fine.
Michiel