Open a second window when I click on a button

Auguste
257 Posts
Auguste posted this 05 June 2020
Ask a Question

Hello, I have a button when I click on I want to download a pdf file and at the same time open a second window.

I find this script here https://www.youtube.com/watch?v=WfI7bJ8hac8.

How can you add it to Nicepage?

<script type="text/javascript">


   <input id="myidname" value="mybutton" type="button" />


   <script type="text/javascript">


   this.mybutton = document.getElementById("myidname");
   this.mybutton.addEventListener("click", hello);


   Function hello (){
   window.open("/myfile.pdf");
   window.location.replace("https://www.adobe.com");


   }


</script>

Thanks :-)

Hello, I have a button when I click on I want to download a pdf file and at the same time open a second window. I find this script here https://www.youtube.com/watch?v=WfI7bJ8hac8. How can you add it to Nicepage? <script type="text/javascript"> <input id="myidname" value="mybutton" type="button" /> <script type="text/javascript"> this.mybutton = document.getElementById("myidname"); this.mybutton.addEventListener("click", hello); Function hello (){ window.open("/myfile.pdf"); window.location.replace("https://www.adobe.com"); } </script> Thanks :-)

Last edited 05 June 2020 by Auguste

Vote to pay developers attention to this features or issue.
6 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 05 June 2020

Hi Christophe,

Use the HTML control to insert this code in the content.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Christophe, Use the HTML control to insert this code in the content. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Auguste
257 Posts
Auguste posted this 05 June 2020

Thanks Hella

Thanks Hella
Support Team
Support Team posted this 08 June 2020

Hi Christophe,

You are welcome, feel free to contact us on any occasion.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Christophe, You are welcome, feel free to contact us on any occasion. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Auguste
257 Posts
Auguste posted this 08 June 2020

In fact, this JavaScript code doesn't work, in another post a suggested to Nicepage to add in the wishlist "creation of funnel in Nicepage" like Clickfunnels

In fact, this JavaScript code doesn't work, in another post a suggested to Nicepage to add in the wishlist "creation of funnel in Nicepage" like Clickfunnels
Support Team
Support Team posted this 09 June 2020

Hi,

Actually, the code works ok. Please change an incorrect line

 Function hello (){

to

 function hello (){

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, Actually, the code works ok. Please change an incorrect line Function hello (){ to function hello (){ ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Auguste
257 Posts
Auguste posted this 09 June 2020

Thank you, but the second window after that of the PDF does not open ...
I think the browser prevents the opening of a second window after the one opened for the PDF

Thank you, but the second window after that of the PDF does not open ... I think the browser prevents the opening of a second window after the one opened for the PDF
You must log in or register to leave comments