Hi all,

I've added www.sheriff.org, marmot.com & http://www.novita.org.au to the 
list.

Keep the sites coming. Also, if you're using FireFox, consider using the 
script below that jQuery team member Paul Bakaus developed to identify 
jQuery sites. Its awesome.

Rey


// jQuery Detector
// version 0.1
// 2007-02-09
// Copyright (c) 2007, Paul Bakaus
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.  To install it, you need
// Greasemonkey 0.3 or later: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Hello World", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          jQuery Detector
// @namespace     http://www.paulbakaus.com/
// @description   will show wether the actual page is powered by jQuery
// @include       *
// ==/UserScript==

var head = document.getElementsByTagName("head")[0];
if(head) {
        var n = document.createElement("script");
        n.src = "http://paul.jquery.com/jquerydetector.js";;
        head.appendChild(n);
}



_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to