inweb-bootstrap/Patterns/HTML/Popups/Popups.html

7 lines
143 B
HTML
Raw Normal View History

2020-04-11 21:38:08 +00:00
<script>
function togglePopup(material_id) {
var popup = document.getElementById(material_id);
popup.classList.toggle("show");
}
</script>