Opening affiliate banners in a new window | Community
Skip to main content
nishil_karia
October 3, 2016
Solved

Opening affiliate banners in a new window

  • October 3, 2016
  • 1 reply
  • 631 views

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. 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by ParitMittal

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

1 reply

ParitMittal
ParitMittalAccepted solution
Level 10
October 4, 2016

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