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

This is probably too basic but I'm unable to figure out how this is done.

To modify one CSS property of a div, I do this:

$('#myDiv').css('width', '300');

What if I want to modify both width and height?

This --

$('#myDiv').css('width', '300', 'height', '250');

-- didn't work.

Chaining it works:

$('#myDiv').css('width', '300').css('height', '250');

-- but I'm wondering if there's more elegant, simpler syntax for it. Would be grateful for someone's advice.

share|improve this question

1 Answer

up vote 5 down vote accepted

Try this

$('#myDiv').css({width: '300', height: '250'});

From official documentation

jQuery can equally interpret the CSS and DOM formatting of multiple-word properties. For example, jQuery understands and returns the correct value for both .css({'background-color': '#ffe', 'border-left': '5px solid #ccc'}) and .css({backgroundColor: '#ffe', borderLeft: '5px solid #ccc'}). Notice that with the DOM notation, quotation marks around the property names are optional, but with CSS notation they're required due to the hyphen in the name.

share|improve this answer
Thank you, Claudio. Tried it. Didn't work. Are there any other ways? – Figaro Jul 19 '11 at 1:50
2  
should be $('#myDiv').css({width: '300', height: '250'});. Notice the : instead of the , – hunter Jul 19 '11 at 1:50
@hunter: thanks! My fault, copy paste mistake :) – Claudio Redi Jul 19 '11 at 1:51
Great! Thanks Claudio, Thanks Hunter! – Figaro Jul 19 '11 at 1:52

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.