Hi, I want to use a tool for tooltip/preview image. And here is my choice: http://james.padolsey.com/demos/imgPreview/full/
A very nice tool for image preview.
But I should use without "a href" tag, with onmouseover(); function.
For example:
<img src="small_image.jpg" onmouseover="imgPreview('big_image.jpg');" alt="" title="">
or
<span onmouseover="imgPreview('big_image.jpg');"><img src="small_image.jpg" alt="" title=""></span>
or something like that.
I need help here. How I can do it with this jquery tool? Thanks.