Home | History | Annotate | Download | only in parse-only

Lines Matching defs:fn

26 		return new jQuery.fn.init( selector, context );
35 jQuery.fn = jQuery.prototype = {
212 jQuery.fn.text( [ this ] );
541 jQuery.fn.init.prototype = jQuery.fn;
562 jQuery.extend = jQuery.fn.extend = function() {
1187 }, function(name, fn){
1188 jQuery.fn[ name ] = function( selector ) {
1189 var ret = jQuery.map( this, fn );
1205 jQuery.fn[ name ] = function( selector ) {
1210 jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
1259 }, function(name, fn){
1260 jQuery.fn[ name ] = function(){
1261 return this.each( fn, arguments );
1357 fn = queue.shift();
1360 fn = queue[0];
1362 if( fn !== undefined )
1363 fn.call(elem);
1367 jQuery.fn.extend({
2378 return jQuery.grep(jQuery.timers, function(fn){
2379 return elem === fn.elem;
2453 var fn = handler;
2456 handler = this.proxy( fn );
2477 fn);
2541 // jQuery(...).unbind("mouseover mouseout", fn);
2761 proxy: function( fn, proxy ){
2762 proxy = proxy || function(){ return fn.apply(this, arguments); };
2764 proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
2894 jQuery.fn.extend({
2895 bind: function( type, data, fn ) {
2896 return type == "unload" ? this.one(type, data, fn) : this.each(function(){
2897 jQuery.event.add( this, type, fn || data, fn && data );
2901 one: function( type, data, fn ) {
2902 var one = jQuery.event.proxy( fn || data, function(event) {
2904 return (fn || data).apply( this, arguments );
2907 jQuery.event.add( this, type, one, fn && data);
2911 unbind: function( type, fn ) {
2913 jQuery.event.remove( this, type, fn );
2933 toggle: function( fn ) {
2939 jQuery.event.proxy( fn, args[i++] );
2941 return this.click( jQuery.event.proxy( fn, function(event) {
2957 ready: function(fn) {
2964 fn.call( document, jQuery );
2969 jQuery.readyList.push( fn );
2974 live: function( type, fn ){
2975 var proxy = jQuery.event.proxy( fn );
2983 die: function( type, fn ){
2984 jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
2994 jQuery.each(jQuery.data(this, "events").live || [], function(i, fn){
2995 if ( check.test(fn.type) ) {
2996 var elem = jQuery(event.target).closest(fn.data)[0];
2998 elems.push({ elem: elem, fn: fn });
3007 if ( this.fn.call(this.elem, event, this.fn.data) === false )
3098 jQuery.fn[name] = function(fn){
3099 return fn ? this.bind(name, fn) : this.trigger(name);
3224 jQuery.fn.extend({
3226 _load: jQuery.fn.load,
3313 jQuery.fn[o] = function(f){
3784 jQuery.fn.extend({
3846 _toggle: jQuery.fn.toggle,
3848 toggle: function( fn, fn2 ){
3849 var bool = typeof fn === "boolean";
3851 return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
3853 fn == null || bool ?
3855 var state = bool ? fn : jQuery(this).is(":hidden");
3858 this.animate(genFx("toggle", 3), fn, fn2);
3961 jQuery.fn[ name ] = function( speed, callback ){
3968 speed: function(speed, easing, fn) {
3970 complete: fn || !fn && easing ||
3973 easing: fn && easing || easing && !jQuery.isFunction(easing) && easing
4173 jQuery.fn.offset = function() {
4183 jQuery.fn.offset = function() {
4259 jQuery.fn.extend({
4304 jQuery.fn[ method ] = function(val) {
4335 jQuery.fn["inner" + name] = function(){
4342 jQuery.fn["outer" + name] = function(margin) {
4350 jQuery.fn[ type ] = function( size ) {