Open an URL in another page

Hello! Does anyone know how I could do when I click a button redirects me to another page and sends a url like data, so that I can open that URL as an iFrame on another page created with Bubble
Hope i explain well, thank for read me

Hello!

In the destination page place a html element and add the following code:

<!DOCTYPE html>
<html>
 <style>
 	iframe{
 		width:100%;
 		height: 500px;
 	}
 </style>
  <iframe src="ADDFULLEMBEDABLELINGHERE"></iframe>
  <iframe src="ADDFULLEMBEDABLELINGHERE"></iframe>
</html>

This topic was automatically closed after 70 days. New replies are no longer allowed.