Lines Matching refs:prop

1899 	prop: function( name, value ) {
1900 return jQuery.access( this, name, value, true, jQuery.prop );
2182 return jQuery.prop( elem, name, value );
2303 prop: function( elem, name, value ) {
2956 for ( var i = this.props.length, prop; i; ) {
2957 prop = this.props[ --i ];
2958 event[ prop ] = originalEvent[ prop ];
4906 for ( var prop in oldSizzle ) {
4907 Sizzle[ prop ] = oldSizzle[ prop ];
8064 animate: function( prop, speed, easing, callback ) { argument
8067 if ( jQuery.isEmptyObject( prop ) ) {
8072 prop = jQuery.extend( {}, prop );
8092 for ( p in prop ) {
8097 prop[ name ] = prop[ p ];
8098 delete prop[ p ];
8101 val = prop[ name ];
8106 val = prop[ name ] = val[ 0 ];
8151 for ( p in prop ) {
8153 val = prop[ p ];
8300 fx: function( elem, options, prop ) { argument
8303 this.prop = prop;
8317 (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
8322 if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) ) {
8323 return this.elem[ this.prop ];
8327 r = jQuery.css( this.elem, this.prop );
8343 this.unit = unit || this.unit || ( jQuery.cssNumber[ this.prop ] ? "" : "px" );
8374 this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
8380 this.custom(this.prop === "width" || this.prop === "height" ? 1 : 0, this.cur());
8389 this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
8409 options.animatedProperties[ this.prop ] = true;
8453 …this.pos = jQuery.easing[ options.animatedProperties[ this.prop ] ]( this.state, n, 0, 1, options.…
8497 if ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {
8498 …fx.elem.style[ fx.prop ] = (fx.prop === "width" || fx.prop === "height" ? Math.max(0, fx.now) : fx…
8500 fx.elem[ fx.prop ] = fx.now;