1
vote
2answers
557 views
jQuery UI Dialog Throw Errors When Invoked from Greasemonkey
I'm getting this awkward error any time I try and create a dialog from
Greasemonkey... I believe it has to do with the limitations of
XPCNativeWrapper https://developer.mozilla.org/en/XPCNativeWrap …
0
votes
4answers
54 views
Check if a key is down?
Is there a way to detect if a key is currently down in JavaScript?
I know about the "keydown" event, but that's not what I need. Some time AFTER the key is pressed, I want to be able to det …
0
votes
jQuery UI Dialog Throw Errors When Invoked from Greasemonkey
Here is one workaround, but there are still other less dramatic problems involved.
// ==UserScript==
// @name Dialog Test
// @namespace http://strd6.com
// @descripti …
1
vote
Programmaticly creating <DIV>s and problems arise
Instead of creating the inner html from strings you can create it with jQuery and add event listeners like so:
$("<div></div>")
.click(function(e) {
selectTarget(i …
0
votes
Can a Greasemonkey script override AdBlock filters?
What type of elements are you trying to access? Most of the page elements should still be available, just with 'display: none;'.
I use jQuery in my Greasemonkey scripts and it is able to ge …
2
votes
launch an app to record keep with greasemonkey
I recommend using a webserver to gather the data. You can set up a domain or IP to send the data to. Just for starting out you could even run on localhost if you need to.
The advantage is t …
0
votes
How to get a GreaseMonkey script to listen for elements with a specific class being inserted into a page
You can use DOMNodeInserted
This e …
0
votes
Reading the value of an input using XPath, then using in Greasemonkey
One possibility is to include jQuery in your scripts. This will provide a simpler syntax for accessing elements.
// ==UserScript==
// @name MyScript
// @namespace htt …
0
votes
A little help with DOM manip and GreaseMonkey
Writing JavaScript without a library is a hell I can never return to.
Here is a script skeleton that enables jQuery:
// ==UserScript==
// @name MyScript
// @namesp …
0
votes
Greasemonkey: Change text in a webpage?
// ==UserScript==
// @name MyScript
// @namespace http://example.com
// @description Example
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/j …
3
votes
Is there any kind of hashCode function in javascript?
The easiest way to do this is to give each of your objects it's own unique toString method.
(function() {
var id = 0;
/*global MyObject */
MyObject = function() {
…
1
vote
How do you determine equality for two JavaScript objects?
The default equality operator in JavaScript for Objects yields true when they refer to the same location in memory.
var x = {};
var y = {};
var z = x;
x === y; // => false
x === …
1
vote
How can I execute Javascript function before Page load?
Unobtrusive JavaScript may be of interest. Allowing your pages to degrade gracefully will simplify development. De …
