Is there a Twitter Bootstrap class that means "initially hidden"?
Posted
by
bgp
on Stack Overflow
See other posts from Stack Overflow
or by bgp
Published on 2014-08-21T04:08:01Z
Indexed on
2014/08/21
4:20 UTC
Read the original article
Hit count: 136
jQuery
|twitter-bootstrap
Using Bootstrap 3, I have an element on a page I want to show later in response to the user clicking a button. Example:
<div id="search_results">
... gets populated from ajax data later ...
</div>
<button id="search_button" type="button" class="btn btn-primary pull-right">Search</button>
<script>
$('#search_button').click(function() {
// ... do the call to search
// and in the callback:
$('#search_results').show();
});
</script>
The search_results div should be initially hidden. Is there some normal/best practice way of doing this with bootstrap?
Yes, I do realize I can just put style="display:none" on search_results, but is that the best way to do it? It would seem to be a bit better to have a style that semantically means "initially hidden". (NOTE: The hidden or hide classes don't do this as they are !important and show(), toggle(), etc. use an inline style which does not override them, i.e. setting "hidden" as the class makes it unshowable from jQuery.)
© Stack Overflow or respective owner