I have a div which is hidden in a form (class="hide"), when I click a button then that div be shown by removing the class "hide". That div is having a label and a button . The label is not shown when the "hide" class is removed dynamically. But the buttons are shown. Only the label is missing. Let me know the problem here.
<div id="UpdateDiv" class="hide" class="col-lg-12">
<div align="right" style="margin:10px;">
<label id='UpdateSuccess'>Update Successful</label>
<a class="btn btn-primary btn-sm" style="margin-left:10px; width:100px;">
<i class="demo-icon icon-cw-1 fa-fw" style="font-size:1.3em;"> </i> Update
</a>
<button type="button" class="btn btn-primary btn-sm" style="width:120px; border:0px ">Cancel</button>
</div>
</div>
$("#UpdateDiv").removeClass("hide");
Thanks.