Hi,
today I tried to implement a popup function on the gallery images.

The lightbox solution works - I'm able to display a node in the lightbox popup. :-)

But how could I implement a popup from http://drupal.org/project/popups ?

Thanx for your hints..

Comments

neilsabharwal’s picture

how did you do this????

neilsabharwal’s picture

i did it inside a normal poopup using this for onclick

function() {window.open(this.url, '_blank',
'width=427,height=298,left=200,top=200');}

dureaghin’s picture

This is for ColorBox
function() { jQuery.colorbox( { href:this.getAttribute('longdesc'), title:this.title, iframe:true, innerWidth:480, innerHeight:390 } ); }

Lionsharz’s picture

Any idea on some code to do the same for Lightbox or Shadowbox?