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

How to change css display none or block property using Jquery?

share|improve this question

5 Answers

up vote 56 down vote accepted

Use the jQuery css method:

$("#id").css("display", "none");
$("#id").css("display", "block");
share|improve this answer
Thank you for your replay ;-) – learner Aug 27 '10 at 9:06
@GenericTypeTea: #id used for ids what about if I want to use class? – Abhishek Simon Aug 23 '11 at 12:43
3  
$(".class").css("display", "none"); – GenericTypeTea Aug 23 '11 at 13:02
super this is what i search – Sravanthi May 2 at 11:58

If the display of the div is block by default, you can just use .show() and .hide(), or even simpler, .toggle() to toggle between visibility.

share|improve this answer
True, it will set display to whatever it was initially, which could be block or something different. – danielgwood Aug 27 '10 at 8:56

There are several ways to accomplish this, each with it's own intended purpose.

1.) To use inline while simply assigning an element a list of things to do

$('#ele_id').css('display', 'block').animate(....
$('#ele_id').css('display', 'none').animate(....

2.) To use while setting multiple css attributes

$('#ele_id').css({
    display: 'none'
    height: 100px,
    width: 100px
});
$('#ele_id').css({
    display: 'block'
    height: 100px,
    width: 100px
});

3.) To dynamically call on command

$('#ele_id').show();
$('#ele_id').hide();

4.) To dynamically toggle between block and none, if it's a div (some elements are displayed as inline, inline-block, or table, depending on the tag)

$('#ele_id').toggle();
share|improve this answer
Awesome..+1 for you.. :) thanks for such explanation and different ways to accomplish this.. – Mayank Pathak Dec 11 '12 at 13:19

Other way to do it using jQuery CSS method:

$("#id").css({display: "none"});
$("#id").css({display: "block"});
share|improve this answer
thanks......... – Photon Apr 9 at 12:40

use this

$("#id").(":display").val("block");

or

$("#id").(":display").val("none");
share|improve this answer

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.