You can do it with lightbox. It involves pushing things a little. For example:
Code:
<a href="images/image-1.jpg" rel="lightbox"
title="<img src='some.jpg'>"
>whatever</a>
But then, when you hover the link in most browsers, there will be a 'tooltip' showing the raw HTML code from the image tag title of the link. If you are linking an image, this can be overridden by giving the linked image its own title, and also with text if enclosed in a span tag with its own title:
Code:
<a href="images/image-1.jpg" rel="lightbox"
title="<img src='some.jpg'>"
><img src="thumbs/thumb-1.jpg" title="Whatever"></a>
or:
Code:
<a href="images/image-1.jpg" rel="lightbox"
title="<img src='some.jpg'>"
><span title="Whatever">whatever</span></a>
Bookmarks