Tagged Questions
2
votes
1answer
37 views
How to prevent execution of Greasemonkey function in subwindows?
I have a Greasemonkey function that creates a button on every website my browser visits.
I would like to prevent this from happening in all subwindows of the main window of the visited website. ...
0
votes
0answers
44 views
Setting up two coordinated iframes with Greasemonkey
I'm working on a script for helping me read my favorite news site. Basically, it will consist of two iframes side by side, the left one with the headlines and the right one for reading articles opened ...
1
vote
1answer
135 views
Executing a function on iframe load with greasemonkey
I am making a greasemonkey script for personal use, but I need it to execute a function when an iframe finishes loading. I tried having 2 seperate scripts, with one loading inside the iframe and ...
1
vote
1answer
101 views
Add a frame to the bottom of a web page using a Greasemonkey script (and set its size)?
Is there any way to add a frame to the bottom of a web page using a Greasemonkey script?
I want to write a script that adds http://www.google.com at the bottom of every web page, inside a frame.
I ...
2
votes
1answer
137 views
“eval is not a function” when using iframe and Greasemonkey/Scriptish
Is there any way I can get this piece of code to work inside Greasemonkey/Scriptish, or would I have to inject it into the webpage itself?
body = document.getElementsByTagName("body")[0];
fakeConsole ...
0
votes
1answer
852 views
How do I access an iframe's javascript from a userscript?
I'm trying to use a Chrome userscript or a Tampermonkey script to modify a page with this structure:
<body>
content up here
<iframe id="main" src="foo.dat"></iframe>
</body>
...
1
vote
1answer
355 views
Inserting HTML at cursors position and moving cursor to end of inserted html with javascript
I am writing a script to insert presaved html content into Gmail's editable iframe in the compose page mentioned below. This script is only to be used in Greasemonkey on Firefox. So I don't need to ...
2
votes
2answers
6k views
Chrome userscript error: “Unsafe JavaScript attempt to access frame”
// the iframe of the div I need to access
var iframe = document.getElementsByTagName("iframe")[2];
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
// resize 'player' in the ...
1
vote
1answer
260 views
Hide Text and Add a Button to make it show up
I'm trying to change a script, I'm doing this more to learn how to do it than because I need it.
Once you click a link on the page you got a javascript:nameoffunction('somekey');
So it pop ups on ...
2
votes
1answer
202 views
Client-Side ajaxComplete Call Generating Infinite iframes
Alright, so here is my issue. I'm writing a Greasemonkey script to insert two iframes on an AJAXified site, but ajaxComplete gets caught in a loop and generates an excess number of iframes (sometimes ...
0
votes
0answers
210 views
change display of elements in a cross-domain iframe (greasemonkey, bookmarklet solutions ok!)
I need to create a web page that embeds a live google doc with the docs-chrome div element (containing all the stuff at the top of a docs page) hidden or removed in the iframe. Because of cross-site ...
0
votes
1answer
131 views
Some correction about jquery and iframe?
I create a simple greasemonkey script, it's attached new menu on a page, when clicked it will show the iframe, I want to make sure that when I click the menu the iframe has already fully loaded, so I ...
-1
votes
1answer
469 views
how to add element of page to another page with greasemonkey
ok, i try to add black google bar to top of facebook page, so this my attemp using jquery
// ==UserScript==
// @name GooggleBar Facebook
// @namespace nyongrand
// @require ...
0
votes
2answers
178 views
Frame overwrites the button?
dv = document.createElement('div'); // create dynamically div tag
dv.setAttribute('id', "lyr1"); // give id to it
dv.className = "top"; // set the style classname
// set the inner styling ...
1
vote
1answer
473 views
Get contents of an iframe which has ajax content, with Greasemonkey
I have a Greasemonkey script which uses jQuery and detects if a "class" is present in the document.
var damageMessage = $(".mw_error").text();
Thanks to ShankarSangoli he or she gave me the ...
1
vote
1answer
886 views
Get the contents of a class inside an iframe, with Greasemonkey
I have a Greasemonkey script which uses jQuery and detects if a "class" is present in the document.
var damageMessage = $(".mw_error").text();
This works fine when the document loads and ...
0
votes
1answer
1k views
javascript (greasemonkey) how to access a newly created iframe
i have this website, by clicking on certain link on the website an iframe will be created within the same window.
my question, just wondering how to access this iframe?
i tried ...
-1
votes
1answer
882 views
Greasemonkey is getting an empty document.body on select Google pages
Update
The root cause appears to be a bug in Greasemonkey. Essentially, GM would start running in the main document space (window.self == window.top), but never finish!
Instead, GM would switch ...
3
votes
1answer
2k views
Greasemonkey against an iframe using @include - does this work?
I'm wondering if you can have Greasemonkey execute against an iframe only and not it's parent window. The parent window is domain A, the iframe is domain B, and the include in the script would be ...
2
votes
5answers
1k views
JavaScript iframe busting
In certain conditions, I have a web page that gets opened in an iframe. When it's loaded into that iframe, I need it to set the window location to a resource to download a file (all of this in an ...
4
votes
1answer
974 views
iframe undefined in Greasemonkey script
I have created a Greasemonkey script that runs fine in the firebug editor, with the Greasemonkey specifics removed, but not when I try to package it as a userscript. The Firefox error console is ...
0
votes
1answer
2k views
How can I call a function in an iframe's parent using Greasemonkey
I have a Greasemonkey script which adds an iframe to the page (call it Page 1). The iframe contains another page (call it Page 2). The script runs on Page 2 as well. Pages 1 and 2 are on different ...
24
votes
4answers
19k views
Detect iFrame embedding in Javascript
I have an application that has a certain page -- let's call it Page A. Page A is sometimes a top-level page, but also sometimes is embedded as an iframe within page B. All pages come from the same ...
1
vote
2answers
3k views
Why won't an HTML form load into a Javascript-created iframe?
So, in pure HTML, I can create a form that loads its results into an iframe
(instead of moving the user to the result url).
<html>
<head>
<title>Google Preview</title>
...
