Skip to content

Instantly share code, notes, and snippets.

View dallin's full-sized avatar
💻
building something great

Dallin Hitchcock dallin

💻
building something great
View GitHub Profile
@dallin
dallin / index.php
Last active September 27, 2016 18:35
JS for Man
<script>
var windows = [];
// Show the modal window
function showModal(modal_id) {
// Get the modal
var modal = document.getElementById(modal_id);
// Show the modal
modal.style.display = "block";