Community Page
- paulmwatson.com/journal Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Make songbird look like spotify: http://addons.songbirdnest.com/addon/1440
- Got it, thanks Paul!
- Email me your email address so I can invite you Mike (paul@paulmwatson.com)
- Happy New Year to you, as well! I was stopping by to see if you would be willing to lend a reader a Spotify invitation. I am desperately hoping to be able try out the service. Thanks! Mike
- Nice one Jamie. Even more ironic is that that "mass production" is probably still underpaid, underage workers in some 3rd world country sweat-shop.
Jump to original thread »
jQuery is a fantastic piece of JavaScript and is fast replacing prototype in my projects. I’d like it to go beyond that though. I want it to be a library I can call on any website I am visiting, whether the site has it loaded or not.
GreaseMonkey seems the logical way to do this. I [...] ... Continue reading »
GreaseMonkey seems the logical way to do this. I [...] ... Continue reading »
2 years ago
var theScript = document.createElement("script");
theScript.src = "http://jquery.com/src/latest.js";
theScript.language = "javascript";
document.body.insertBefore(theScript, document.body.firstChild);
:)
I even opened up Firebug to try it out...it works. :)
2 years ago
> theScript.src = “http://jquery.com/src/latest.js”;
including jQuery directly from John's server is something you should avoid. Though it was recommened in the jQuery tutorial, it could produce quite a lot of traffic and therefore costs for John.
On the other hand, it should be no problem to simply include a local copy of jQuery. AFAIK the "lastest" version isn't currently updated anymore.
2 years ago
Another thing that breaks-ish is that if you include all sites with that user script, then secure sites won't be marked as secure because some items aren't secured.
2 years ago
2 years ago
Install the user script and you're set...
2 years ago
Good idea on the XPI though, I'll give that a bash and save the servers.
2 years ago