qutebrowser/tests/html/jsconfirm.html

13 lines
284 B
HTML
Raw Normal View History

2015-01-28 20:34:46 +01:00
<head>
<script type="text/javascript">
function prompter() {
var reply = confirm("js confirm", "")
alert("JS alert: " + reply + "!")
}
</script>
</head>
<body>
<input type="button" onclick="prompter()" value="Show prompt">
</body>