I have a problem when I embed my second site to my first site. In my second site there are a popup
and it triggered with a button
. I sucessfully embed it with <embed>
tag and I set width
in 800px
and height
in 300px
. When I hit the button the popup
showing but just inside the 800px x 300px
frame. I want to show the popup
in parent page which is my first site. I use this code to embed it.
<embed src="http://example.com" width=800 height=300 />
How to show my popup
in parent page so the popup
will look full in screen and not just inside the frame ? Thank you before.