lity open modal hide close button code example
Example 1: disable close from screen modal popup
<!-- opening with html, the key is the data-backdrop="static" attribute -->
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
Launch demo modal
</button>
<script>
//Opening with JS:
$('#myModal').modal({backdrop: 'static', keyboard: false})
</script>
Example 2: display modal without button click
$("#getCodeModal").modal("show");
Example 3: lity open modal hide close button
$('.lity-close').remove();