Open a link from a repeater to a dynamic page in a new window

(Sorry for the mistakes of expressions I use Google Translate to write this post)
Hello,
I have a page with a repeater connected to a database without a code.
Inside this repeater I have a button that leads to another dynamic page when I click the page opens in the same window? I would like the dynamic page to open in a NEW window what to do?
thank you in advance for your help

Put this code in the page code section:

$w.onReady(() => {
    $w('#button1').target = '_blank';
})

Thank you so much ! It works perfectly! :grin: