Mobile app version of vmapp.org
Login or Join
Candy875

: Loading one webpage from another webpage I am thinking of ways of adding a "chat bar" onto websites. One idea that I had works like this: random site(e.g.): youtube.com/video1 w/ "chat bar"

@Candy875

Posted in: #WebDevelopment

I am thinking of ways of adding a "chat bar" onto websites. One idea that I had works like this:


random site(e.g.): youtube.com/video1
w/ "chat bar" attached: chatbar.com/youtube-video1


So basically youtube.com/video1 will be loaded by my webpage (with the "chat bar"). I think google image re

Is this even possible? (I'm pretty sure good does something similar when a user clicks a link from image search results) Point me in the right direction.

Thanks

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Candy875

1 Comments

Sorted by latest first Latest Oldest Best

 

@Goswami781

You can use an IFRAME to put another web page into yours. You won't need to do that with Youtube as you can embed it in your page. (Look on youtube for the embed option under sharing.)

You use an IFRAME like this:

<iframe src="chatbar.com/youtube-video1" width="xxx" height="yyy">
</iframe>


Where xxx and yyy are the size you want it.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme