Question : Show another HTML in an HTML-Element

How do I show another HTML in an HTML element using JavaScript.

Answer : Show another HTML in an HTML-Element

There are some services that would let you generate a thumbnail of a URL, most of them are paid services though such as http://webthumb.bluga.net/home

I'm not aware of any realtime free ones that you could pass a parameter to and get a thumbnail, but some services like http://www.shrinktheweb.com/ would generate several sizes thumbnails for a given url and you can then embed the image directly using its generated URL but I would recommend saving it instead since there's nothing that tells for how long it would be kept on the server.

There is also http://demo.websupergoo.com/dh-asp/view.asp which is actually a test page for an ASP module that can be used to generate thumbnails for given URLs and accepts parameters like scale, etc...

You can also use it directly like below (You can replace google.com with any other site and also modify the dimensions) but it takes considerable time to generate the thumbnail for the first time, However you shouldn't use it from their server as it's not intended to be a service and you should alternatively download the module and use it.
1:
<img src="http://demo.websupergoo.com/dh-asp/image.asp?url=http%3A%2F%2Fwww.google.com&w=200&h=200&sw=800&sh=600&sl=0&st=0">
Random Solutions  
 
programming4us programming4us