How to open new window when click
Right now the code will only open in the same window when the thumbnail is clicked. How do I open a new window?
I tried:
function clickHandler(dat, lbl) {
// handler function receives "data" (dat variable) as string and "label" (lbl variable) as string
getURL(dat,'_new');
}
and did not work. Please help.
|