bootstrap modal add close button code example
Example 1: close bootstrap modal with javascript
$('#myModal').modal('hide');
Example 2: bootstrap 3 modal close only with button
<--! Add following to modal Div : data-backdrop='static' -->
Related