I use this js http://highslide.com.
I have a separate div and i want open the highslide with this div with onclick event..
I have try this but not work..
$('#po').click(function(){
var s = $('#ap_1');
return hs.expand(s, config1);
});
#ap_1 is the first a tag element ...
I think
hs.expandtakes a DOM element; try usinghs.expand(s.get(0), config1);.