Popup without jQuery
https://ohno.github.io/popup.js/
<script src="https://cdn.jsdelivr.net/gh/ohno/popup.js@1.0.1/popup.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ohno/popup.js@1.0.1/popup.min.css">
<script>popup("Hello World!");</script>
<button onClick='popup("Hello World!");'>popup</button>
<input id="input" value="TextTextTextTextTextText">
<button onClick='popup(document.getElementById("input").value);'>popup!</button>