Quick and dirty, designed to run on this webpage:

http://www.wbt.com/CFIDE/debug/blank.html

(it's the first blank page I found)

Script:

// ==UserScript==
// @name                        Test
// @namespace           Foo
// @description         Test
// @include                     *CFIDE/debug/blank.html*
// @version                     0.0.1
// ==/UserScript==

var x = document.createElement("<iframe>");
x.src = "http://www.google.com";;
document.body.appendChild(x);
var x = document.createElement("<iframe>");
x.src = "http://www.yahoo.com";;
document.body.appendChild(x);
var x = document.createElement("<iframe>");
x.src = "http://www.bing.com";;
document.body.appendChild(x);

On Jul 28, 5:20 am, Ben <[email protected]> wrote:
> Sorry for this question but how to show 3 independent web pages
> concatenated in one browser window?
>
> Assume I have three URLs:
>
> http://www.foobar.com/mypage.htmlhttp://www.blah.com/http://www.otherdomain.net/main.html?parm1=aaa&parm2=bbbb
>
> How do I paste these pages (theri content) together and show them one
> below the other in one browser window with the help of Greasemonkey?
>
> Ben
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/greasemonkey-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to