Thanks.
That worked for the enlarged image.
If I am using this script:
HTML Code:
<script type="text/javascript">
jQuery(function($){
var re = /:(?!\/\/)/;
$('a[rel=enlargeimage]').click(function(e){
var opts = {}, rev = this.rev.split(','), i = rev.length - 1;
for (i; i > -1; --i){
rev[i] = rev[i].split(re);
opts[$.trim(rev[i][0])] = $.trim(rev[i][1]);
if(opts.link){
e.preventDefault();
location.href = opts.link;
return;
}
}
});
});
</script>
to get the tumbnails to go to the link like the enlarged image, how would I go about getting the thumbs to open in a _new tab as well?
Bookmarks