Skip to content

Instantly share code, notes, and snippets.

@faisalfiraz21
Created May 12, 2019 12:59
Show Gist options
  • Save faisalfiraz21/579051ed1ea99e3d7b530933ca7e0e34 to your computer and use it in GitHub Desktop.
Save faisalfiraz21/579051ed1ea99e3d7b530933ca7e0e34 to your computer and use it in GitHub Desktop.
CSS
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Modal Dialog</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
$(".show-modal").click(function(){
$("#myModal").modal('show');
});
});
</script>
</head>
<body>
<button type="button" class="btn btn-primary show-modal">Open</button>
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-body modal-content">
<button type="button" class="btn btn-danger close" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment