Bootstrap Tutorial - Hide Modal Dialog with Button action








The following code shows how to hide Modal Dialog with Button action.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
  src="http://code.jquery.com/jquery.min.js"></script>
<script
  src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--from  ww  w.  j  av a2 s.c  o  m-->
  $('.show-modal').click(function(){
    $('#myModal').modal('show');
  }); 
  $('.hide-modal').click(function(){
    $('#myModal').modal('hide');
  }); 
});
</script>
<style type="text/css">
.bs-example {
  margin: 20px;
}

.hide-modal, .show-modal {
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.hide-modal {
  z-index: 9999;
  bottom: 20px;
}

.show-modal {
  top: 20px;
}
</style>
</head>
<body>
  <div class="bs-example">
    <!-- Button HTML (to Trigger Modal) -->
    <input type="button" class="btn btn-lg btn-primary show-modal"
      value="Show Demo Modal"> <input type="button"
      class="btn btn-lg btn-primary hide-modal" value="Hide Demo Modal">

    <!-- Modal HTML -->
    <div id="myModal" class="modal fade">
      <div class="modal-dialog">
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal"
              aria-hidden="true">&times;</button>
            <h4 class="modal-title">Confirmation</h4>
          </div>
          <div class="modal-body">
            <p>Do you want to save changes you made to document before
              closing?</p>
            <p class="text-warning">
              <small>If you don't save, your changes will be lost.</small>
            </p>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
            <button type="button" class="btn btn-primary">Save
              changes</button>
          </div>
        </div>
        <!-- /.modal-content -->
      </div>
      <!-- /.modal-dialog -->
    </div>
    <!-- /.modal -->
  </div>
</body>
</html>

Click to view the demo