简体   繁体   中英

Div Not Displaying On Click With JQuery (CSS - Block/None)

I would like it so when I click on a Bootstrap Glyphicon a div is displayed. I currently have this HTML (simplified):

<span id="headerdisplaybuttonsxs" class="glyphicon glyphicon-menu-hamburger"> </span>
<div id="headerrightside" class="col-xs-12 col-sm-4"> text... </div>

Then this JS:

$('#headerdisplaybuttonsxs').click(function()) {
    $('#headerrightside').css("display", "block");
});

So I would basically like #headerrightside to display on the clicking of #headerdisplaybuttonsxs . Problem is I can't get that to work.

#headerdisplaybuttonsxs Has a CSS property of display:none .

I have tried $('#headerrightside').show() but that does not seem to work. How could I get this to work? Thank You!!

There was a typo on the click event function with an extra ).

 $('#headerdisplaybuttonsxs').click(function() { $('#headerrightside').css("display", "block"); }); 
 #headerrightside { display: none; } 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <span id="headerdisplaybuttonsxs" class="glyphicon glyphicon-menu-hamburger">Icon</span> <div id="headerrightside" class="col-xs-12 col-sm-4"> text... </div> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM