Expand my Community achievements bar.

SOLVED

Opening affiliate banners in a new window

Avatar

Level 1

Hi All,

On my website i feature affiliate banners, when I click these banners it does not open a new window (i.e. it takes the user away from the page that they are on).

How can I make sure that when a user clicks on a banner on my website, it opens a new window?

Thanks guys. 

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi , 

Please make sure that you use "window.open()" function of javascript on click of the banner. Here is the sample code for the same. 

<!DOCTYPE html> <html> <body> <p>Click the button to open a new browser window.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { window.open("http://www.w3schools.com"); } </script> </body> </html>

Thanks & Regards

Parit Mittal

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Hi , 

Please make sure that you use "window.open()" function of javascript on click of the banner. Here is the sample code for the same. 

<!DOCTYPE html> <html> <body> <p>Click the button to open a new browser window.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { window.open("http://www.w3schools.com"); } </script> </body> </html>

Thanks & Regards

Parit Mittal