Lines Matching refs:options

307 …var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, sr…  variable
330 if ( (options = arguments[ i ]) != null ) {
332 for ( name in options ) {
334 copy = options[ name ];
1354 options = elem.options,
1363 for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
1364 var option = options[ i ];
2244 jQuery.map( elem.options, function( elem ) {
4737 swap: function( elem, options, callback ) { argument
4741 for ( var name in options ) {
4743 elem.style[ name ] = options[ name ];
4749 for ( var name in options ) {
5715 fx: function( elem, options, prop ) { argument
5716 this.options = options;
5720 if ( !options.orig ) {
5721 options.orig = {};
5730 if ( this.options.step ) {
5731 this.options.step.call( this.elem, this.now, this );
5776 this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
5777 this.options.show = true;
5791 this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
5792 this.options.hide = true;
5802 if ( gotoEnd || t >= this.options.duration + this.startTime ) {
5807 this.options.curAnim[ this.prop ] = true;
5809 for ( var i in this.options.curAnim ) {
5810 if ( this.options.curAnim[i] !== true ) {
5816 if ( this.options.display != null ) {
5818 this.elem.style.overflow = this.options.overflow;
5822 this.elem.style.display = old ? old : this.options.display;
5830 if ( this.options.hide ) {
5835 if ( this.options.hide || this.options.show ) {
5836 for ( var p in this.options.curAnim ) {
5837 jQuery.style(this.elem, p, this.options.orig[p]);
5842 this.options.complete.call( this.elem );
5849 this.state = n / this.options.duration;
5852 var specialEasing = this.options.specialEasing && this.options.specialEasing[this.prop];
5853 var defaultEasing = this.options.easing || (jQuery.easing.swing ? "swing" : "linear");
5854 …this.pos = jQuery.easing[specialEasing || defaultEasing](this.state, n, 0, 1, this.options.duratio…
5925 jQuery.fn.offset = function( options ) { argument
5928 if ( options ) {
5930 jQuery.offset.setOffset( this, options, i );
5951 jQuery.fn.offset = function( options ) {
5954 if ( options ) {
5956 jQuery.offset.setOffset( this, options, i );
6063 setOffset: function( elem, options, i ) { argument
6073 if ( jQuery.isFunction( options ) ) {
6074 options = options.call( elem, i, curOffset );
6078 top: (options.top - curOffset.top) + curTop,
6079 left: (options.left - curOffset.left) + curLeft
6082 if ( "using" in options ) {
6083 options.using.call( elem, props );