Database links to open in new window

my users submit giveaways on my website and they are listed here once a giveaway is clicked it brings the user to a new Dynamic page like this one displaying what ever giveaway they clicked.
on that page there is a button that brings them to the giveaway site that was submitted.

the problem is it opens the giveaway in the same window now directing the user away from my site. i would like this button to open in a new window , anyone know how to achieve this ?

You can set the element target property using code. Something like the following -

$w('#image').target = '_blank';

Thank you this worked a charm!

What about for a button - I can’t get it to work. Thanks!