Skip to content

Instantly share code, notes, and snippets.

@temp01
temp01 / jQuery-1.4.2.js
Created January 14, 2010 19:47
jQuery JavaScript Library v1.4
/*!
* jQuery JavaScript Library v1.4.2
* http://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
@temp01
temp01 / jQuery-1.3.2.js
Created January 21, 2010 19:21
jQuery JavaScript Library v1.3.2
/*!
* jQuery JavaScript Library v1.3.2
* http://jquery.com/
*
* Copyright (c) 2009 John Resig
* Dual licensed under the MIT and GPL licenses.
* http://docs.jquery.com/License
*
* Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
* Revision: 6246
// .queueEnd( [queueName], callback(jQuerySet) )
jQuery.fn.queueEnd = function(type, callback){
if( !callback ){
callback = type, type = 'fx';
}
var i = 0, $this = this;
return $this.queue(type, function(){
if( ++i == $this.length ){
callback.call( $this );

jQuery API.xml issues:

  • for replaceAll, :gt, :contains and :has
    the <argument> tag appears outside <signature>
  • for ajaxSuccess and ajaxSend
    the main <desc> appears inside <signature> (it should be a direct child of <entry>)

Due to these issues, some info on main api.jquery.com pages for these methods is missing.

console.log('content script');