I am loading html using ajax call, this html has Bootstrap Collapse. The issue is Collapse is not working, if you click it wil
My solve is:
$('.collapse').on('show', function () { var $this = $(this); if($this.attr('data-href')) { $this.html($.getJSON($this.attr('data-href'),function(data){ $this.html(data.html); $this.removeAttr('style'); })); } })