Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE HTML>
<!-- Any copyright is dedicated to the Public Domain.
<html>
<head>
<script>
function submitForm() {
document.getElementById("form").submit();
}
</script>
</head>
<body onload="submitForm()">
method="POST"
id="form">
<input type="submit" value="Submit POST">
</form>
</body>
</html>