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