$().css("foo") now returns the value of $.css("foo") instead of setting to null.

This commit is contained in:
John Resig 2006-04-09 04:03:36 +00:00
parent 56992c6ad9
commit 4ab5a88bc4

5
jquery/jquery.js vendored
View file

@ -67,13 +67,14 @@ function $(a,c) {
}, },
css: function(a,b) { css: function(a,b) {
return this.each(function(){ return a.constructor != String || b ?
this.each(function(){
if ( !b ) if ( !b )
for ( var j in a ) for ( var j in a )
$.attr(this.style,j,a[j]); $.attr(this.style,j,a[j]);
else else
$.attr(this.style,a,b); $.attr(this.style,a,b);
}); }) : $.css( this.get(0), a );
}, },
toggle: function() { toggle: function() {
return this.each(function(){ return this.each(function(){