groups

name language licence
Test for jQuery - RapidWeaver JavaScript Other
DomReady.min JavaScript Other
extracontent.js JavaScript Other
del.ico.us cloud HTML Other
RapidWeaver Media Albums with prettyPhoto JavaScript Other
jQuery boiler plate JavaScript Other
sikbox Live Search JavaScript Other
jsPathto.min.js JavaScript Other

< 1 2 3 4 5 >



language: JavaScript
licence: Other

Test for jQuery - RapidWeaver

options: view full snippetsend to code collector
/*
I wrote this version of the function test as an example for Joe Workman.
It will allow Stacks developers to test for jQuery/Mootools/js plugins/functions
prior to initiating their own version. This will save on HTTP requests and load times.

It also includes a fool proof way to include the new libraries in a RapidWeaver
file, a function I already include in most themes. It's called the
include() function. Since I make use of it already, I test for it here before
defining it again.
*/

// set jQuery version needed 
var jqVersion = "1.4.2"; 
// test for include function 
if(!(typeof include == 'function')){ 
	
(Continues...)