Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a command like this.

.css('display', 'block') 

However, I think it could also be rewritten in different ways. For example,

.css('display : block') 

That may or may not be correct. I don't remember. Anyways, do you know different ways to rewrite the original command?

share|improve this question
And to what end? – krs1 Aug 2 '11 at 2:19
because when I was playing around with these with someone, it turned out that sometimes some browsers didn't support each method – mjmitche Aug 2 '11 at 2:27
@mjmitche: Then you made a mistake. – Lightness Races in Orbit Aug 2 '11 at 2:32

5 Answers

If you want to set a CSS property in jQuery, there are three methods:

.css( propertyName, value )
.css( propertyName, function(index, value) )
.css( map )

See the JQuery API documentation for more info

share|improve this answer

You mean .css({display:'block'}) and they are both exactly achieve the same thing. Except with my example you can set multiple css styles.

share|improve this answer
They're not "exactly the same" at all. – Lightness Races in Orbit Aug 2 '11 at 2:23
@Tomalak How are they different? – Amir Raminfar Aug 2 '11 at 2:24
One takes a string as an argument. The other takes an object. – Lightness Races in Orbit Aug 2 '11 at 2:26
And they both achieve the same thing don't they? Just different parameters doesn't mean they do different things? Infact its just overloading with different parameters. – Amir Raminfar Aug 2 '11 at 2:27
@Amir: In this one, specific, narrow scenario, yes the same CSS property is set to the same value. To suggest that the two approaches are "exactly the same" is misleading; your recent edit to "they exactly achieve the same thing" is better... in this case. – Lightness Races in Orbit Aug 2 '11 at 2:28
show 3 more comments
.css({display : 'block'}) 

Here is the alternative. This way you can apply more CSS properties to selected objects.

share|improve this answer

You can use the following

$("selector").show();
$("selector").css({display:"block"});
share|improve this answer

This is just reaching here, but:

<style>
    .i-like-the-taste-of-tofu { color: #29c411 }
</style>

....

<p class="this-is-gon-be-greenish">
    AMERICA IS A COUNTRY AND ALSO MOST OF THE WESTERN HEMISPHERE SO THERE
</p>

....

<script>
    $('#this-is-gon-be-greenish').addclass('i-like-the-taste-of-tofu');
</script>
share|improve this answer
Assuming you mean the "United States of America", the USA does not constitute "most of the Western hemisphere" at all. Not even close. – Lightness Races in Orbit Aug 2 '11 at 2:31
That's just weird. Not to mention you don't need the . in the .addClass() argument. – Jared Farrish Aug 2 '11 at 2:33
@Tomalak I meant that America has two definitions: the country, and South+North America, which is most of the Western Hemisphere. – JKDDOW Aug 2 '11 at 3:45
@Jared yeah, I was stretching for fun. Thanks for the comment... updated the relevant error – JKDDOW Aug 2 '11 at 3:45
@JKDDOW: Aha ok :) – Lightness Races in Orbit Aug 2 '11 at 4:14
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.