admin管理员组

文章数量:1344311

Hi I need help with my code to make the below html collapse because it does not collapse currently

This is the javascript function code

function(event, ui) {
    html='';
    var show = "Yes";
    html += "<h5 id='collapsible'>"+ show +"</h5>";
};

$('#history').html(html);

Here is the html text code to show the Yes on the html page

<div id="history"></div>

Please help me Toggle/Collapse the <div id="history"></div>

Hi I need help with my code to make the below html collapse because it does not collapse currently

This is the javascript function code

function(event, ui) {
    html='';
    var show = "Yes";
    html += "<h5 id='collapsible'>"+ show +"</h5>";
};

$('#history').html(html);

Here is the html text code to show the Yes on the html page

<div id="history"></div>

Please help me Toggle/Collapse the <div id="history"></div>

Share Improve this question edited Apr 8, 2013 at 15:52 pilsetnieks 10.4k12 gold badges50 silver badges61 bronze badges asked Apr 8, 2013 at 12:22 Spha CSpha C 291 silver badge3 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 4

If you're already using jQuery, you can simply use toggle():

$("#history").toggle();

You can use javascript method for this:

function toggle() {
    var target = document.getElementById("history");
    if(target.style.display == 'block'){
        target.style.display = 'none';
    }
    else {
        target.style.display = 'block';
    }

To collapse the HTML by default, set the attribute:

<div id="history" style="display:none;"></div>

Javascript:

$('#collapseHistory').on('click', function(){
      $("#history").toggle();
});

HTML:

<div id="history" style="display: none;"></div>
<div id="collapseHistory">Show/Hide</div>

This should work

jQuery Version:

http://www.codepen.io/anon/pen/xBdkl

<div id="temp" onClick="javascript:func()">Show/Hide</div>
<p/>
<div id="history"></div>
<script>
var html='';
 var show = "Yes";
 html += "<h5 id='collapsible'>"+ show +"</h5>";
  $('#history').html(html);

var func = function(){
  if($("#history").is(":visible")){
      $('#history').hide();
  }else{
  $('#history').show();
 }
}
</script>

I used the collapse method

.collapse('hide');

As shown here:

本文标签: jqueryHow do I togglecollapse a javascript element (I want to collapse the html by default)Stack Overflow