Prevent IE from throwing errors when setting RGBA values. Fixes #5509.
[jquery.git] / src / css.js
1 (function( jQuery ) {
2
3 var ralpha = /alpha\([^)]*\)/i,
4         ropacity = /opacity=([^)]*)/,
5         rdashAlpha = /-([a-z])/ig,
6         rupper = /([A-Z])/g,
7         rnumpx = /^-?\d+(?:px)?$/i,
8         rnum = /^-?\d/,
9
10         cssShow = { position: "absolute", visibility: "hidden", display: "block" },
11         cssWidth = [ "Left", "Right" ],
12         cssHeight = [ "Top", "Bottom" ],
13         curCSS,
14
15         // cache check for defaultView.getComputedStyle
16         getComputedStyle = document.defaultView && document.defaultView.getComputedStyle,
17
18         fcamelCase = function( all, letter ) {
19                 return letter.toUpperCase();
20         };
21
22 jQuery.fn.css = function( name, value ) {
23         // Setting 'undefined' is a no-op
24         if ( arguments.length === 2 && value === undefined ) {
25                 return this;
26         }
27
28         return jQuery.access( this, name, value, true, function( elem, name, value ) {
29                 return value !== undefined ?
30                         jQuery.style( elem, name, value ) :
31                         jQuery.css( elem, name );
32         });
33 };
34
35 jQuery.extend({
36         // Add in style property hooks for overriding the default
37         // behavior of getting and setting a style property
38         cssHooks: {
39                 opacity: {
40                         get: function( elem, computed ) {
41                                 if ( computed ) {
42                                         // We should always get a number back from opacity
43                                         var ret = curCSS( elem, "opacity", "opacity" );
44                                         return ret === "" ? "1" : ret;
45
46                                 } else {
47                                         return elem.style.opacity;
48                                 }
49                         }
50                 }
51         },
52
53         // Exclude the following css properties to add px
54         cssNumber: {
55                 "zIndex": true,
56                 "fontWeight": true,
57                 "opacity": true,
58                 "zoom": true,
59                 "lineHeight": true
60         },
61
62         // Add in properties whose names you wish to fix before
63         // setting or getting the value
64         cssProps: {
65                 // normalize float css property
66                 "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat"
67         },
68
69         // Get and set the style property on a DOM Node
70         style: function( elem, name, value, extra ) {
71                 // Don't set styles on text and comment nodes
72                 if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
73                         return undefined;
74                 }
75
76                 // Make sure that we're working with the right name
77                 var ret, origName = jQuery.camelCase( name ),
78                         style = elem.style, hooks = jQuery.cssHooks[ origName ];
79
80                 name = jQuery.cssProps[ origName ] || origName;
81
82                 // Check if we're setting a value
83                 if ( value !== undefined ) {
84                         // If a number was passed in, add 'px' to the (except for certain CSS properties)
85                         if ( typeof value === "number" && !jQuery.cssNumber[ origName ] ) {
86                                 value += "px";
87                         }
88
89                         // If a hook was provided, use that value, otherwise just set the specified value
90                         if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value )) !== undefined ) {
91                                 // Wrapped to prevent IE from throwing errors when 'invalid' values are provided
92                                 // Fixes bug #5509
93                                 try {
94                                         style[ name ] = value;
95                                 } catch(e) {}
96                         }
97
98                 } else {
99                         // If a hook was provided get the non-computed value from there
100                         if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
101                                 return ret;
102                         }
103
104                         // Otherwise just get the value from the style object
105                         return style[ name ];
106                 }
107         },
108
109         css: function( elem, name, extra ) {
110                 // Make sure that we're working with the right name
111                 var ret, origName = jQuery.camelCase( name ),
112                         hooks = jQuery.cssHooks[ origName ];
113
114                 name = jQuery.cssProps[ origName ] || origName;
115
116                 // If a hook was provided get the computed value from there
117                 if ( hooks && "get" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) {
118                         return ret;
119
120                 // Otherwise, if a way to get the computed value exists, use that
121                 } else if ( curCSS ) {
122                         return curCSS( elem, name, origName );
123                 }
124         },
125
126         // A method for quickly swapping in/out CSS properties to get correct calculations
127         swap: function( elem, options, callback ) {
128                 var old = {};
129
130                 // Remember the old values, and insert the new ones
131                 for ( var name in options ) {
132                         old[ name ] = elem.style[ name ];
133                         elem.style[ name ] = options[ name ];
134                 }
135
136                 callback.call( elem );
137
138                 // Revert the old values
139                 for ( name in options ) {
140                         elem.style[ name ] = old[ name ];
141                 }
142         },
143
144         camelCase: function( string ) {
145                 return string.replace( rdashAlpha, fcamelCase );
146         }
147 });
148
149 // DEPRECATED, Use jQuery.css() instead
150 jQuery.curCSS = jQuery.css;
151
152 jQuery.each(["height", "width"], function( i, name ) {
153         jQuery.cssHooks[ name ] = {
154                 get: function( elem, computed, extra ) {
155                         var val;
156
157                         if ( computed ) {
158                                 if ( elem.offsetWidth !== 0 ) {
159                                         val = getWH( elem, name, extra );
160
161                                 } else {
162                                         jQuery.swap( elem, cssShow, function() {
163                                                 val = getWH( elem, name, extra );
164                                         });
165                                 }
166
167                                 return val + "px";
168                         }
169                 },
170
171                 set: function( elem, value ) {
172                         if ( rnumpx.test( value ) ) {
173                                 // ignore negative width and height values #1599
174                                 value = parseFloat(value);
175
176                                 if ( value >= 0 ) {
177                                         return value + "px";
178                                 }
179
180                         } else {
181                                 return value;
182                         }
183                 }
184         };
185 });
186
187 if ( !jQuery.support.opacity ) {
188         jQuery.cssHooks.opacity = {
189                 get: function( elem, computed ) {
190                         // IE uses filters for opacity
191                         return ropacity.test((computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "") ?
192                                 (parseFloat(RegExp.$1) / 100) + "" :
193                                 computed ? "1" : "";
194                 },
195
196                 set: function( elem, value ) {
197                         var style = elem.style;
198
199                         // IE has trouble with opacity if it does not have layout
200                         // Force it by setting the zoom level
201                         style.zoom = 1;
202
203                         // Set the alpha filter to set the opacity
204                         var opacity = jQuery.isNaN(value) ?
205                                 "" :
206                                 "alpha(opacity=" + value * 100 + ")",
207                                 filter = style.filter || "";
208
209                         style.filter = ralpha.test(filter) ?
210                                 filter.replace(ralpha, opacity) :
211                                 style.filter + ' ' + opacity;
212                 }
213         };
214 }
215
216 if ( getComputedStyle ) {
217         curCSS = function( elem, newName, name ) {
218                 var ret, defaultView, computedStyle;
219
220                 name = name.replace( rupper, "-$1" ).toLowerCase();
221
222                 if ( !(defaultView = elem.ownerDocument.defaultView) ) {
223                         return undefined;
224                 }
225
226                 if ( (computedStyle = defaultView.getComputedStyle( elem, null )) ) {
227                         ret = computedStyle.getPropertyValue( name );
228                 }
229
230                 return ret;
231         };
232
233 } else if ( document.documentElement.currentStyle ) {
234         curCSS = function( elem, name ) {
235                 var left, rsLeft, ret = elem.currentStyle && elem.currentStyle[ name ], style = elem.style;
236
237                 // From the awesome hack by Dean Edwards
238                 // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
239
240                 // If we're not dealing with a regular pixel number
241                 // but a number that has a weird ending, we need to convert it to pixels
242                 if ( !rnumpx.test( ret ) && rnum.test( ret ) ) {
243                         // Remember the original values
244                         left = style.left;
245                         rsLeft = elem.runtimeStyle.left;
246
247                         // Put in the new values to get a computed value out
248                         elem.runtimeStyle.left = elem.currentStyle.left;
249                         style.left = name === "fontSize" ? "1em" : (ret || 0);
250                         ret = style.pixelLeft + "px";
251
252                         // Revert the changed values
253                         style.left = left;
254                         elem.runtimeStyle.left = rsLeft;
255                 }
256
257                 return ret;
258         };
259 }
260
261 function getWH( elem, name, extra ) {
262         var which = name === "width" ? cssWidth : cssHeight,
263                 val = name === "width" ? elem.offsetWidth : elem.offsetHeight;
264
265         if ( extra === "border" ) {
266                 return val;
267         }
268
269         jQuery.each( which, function() {
270                 if ( !extra ) {
271                         val -= parseFloat(jQuery.css( elem, "padding" + this )) || 0;
272                 }
273
274                 if ( extra === "margin" ) {
275                         val += parseFloat(jQuery.css( elem, "margin" + this )) || 0;
276
277                 } else {
278                         val -= parseFloat(jQuery.css( elem, "border" + this + "Width" )) || 0;
279                 }
280         });
281
282         return val;
283 }
284
285 if ( jQuery.expr && jQuery.expr.filters ) {
286         jQuery.expr.filters.hidden = function( elem ) {
287                 var width = elem.offsetWidth, height = elem.offsetHeight,
288                         skip = elem.nodeName.toLowerCase() === "tr";
289
290                 return width === 0 && height === 0 && !skip ?
291                         true :
292                         width > 0 && height > 0 && !skip ?
293                                 false :
294                                 (elem.style.display || jQuery.css( elem, "display" )) === "none";
295         };
296
297         jQuery.expr.filters.visible = function( elem ) {
298                 return !jQuery.expr.filters.hidden( elem );
299         };
300 }
301
302 })( jQuery );