gist: 15506 Download_button fork
public
Public Clone URL: git://gist.github.com/15506.git
jQueryUbiquity.js
1
2
3
4
5
6
7
8
9
10
11
CmdUtils.CreateCommand({
  name: "jquery",
  preview: "Injects the latest version of jQuery into the current page.",
  execute: function() {
    var s=Application.activeWindow.activeTab.document.createElement('script');
    s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
    Application.activeWindow.activeTab.document.getElementsByTagName('body')[0].appendChild(s);
    displayMessage( "jQuery injected in current page");
  }
});
 

Owner

arnar

Revisions

  • 1f3c92 Wed Oct 08 05:35:46 -0700 2008
  • 429ebf Wed Oct 08 05:35:15 -0700 2008