I am designing a website having lot of sub-pages. So the links are placed on a single page when the user hover the link i need to show the corresponding webpage as thumbnail in a tooltip.
I tried may jquery plugins but they are provide image based thumbnail view only.
I came across below
data:text/html,<html><head><!--[if IE]><style>iframe{zoom:0.2;}</style><![endif]--><style>iframe{width:800px;height:520px;border:none;-moz-transform:scale(0.2);-moz-transform-origin:0 0;-o-transform:scale(0.2);-o-transform-origin:0 0;-webkit-transform:scale(0.2);-webkit-transform-origin:0 0;}</style></head><body><iframe src="http://www.bing.com"></iframe></body></html>
Past it on browser's address bar will load webpage in iframe.But i dont know how make the above code works with ajax.
Thanks.