your output:
ReferenceError: "aqString" is not defined
expected output:
Script
<html>
<head>
<title>Q219891</title>
<script>
function someFunction(boolean) {
document.querySelector("form").innerHTML = "Script";
}
</script>
</head>
<body>
<h1></h1>
<form action="#" method="GET" onsubmit="someFunction()">
<fieldset>
<input type="text"/>
<input type="submit"/>
</fieldset>
</form>
</body>
</html>
Comments
Leave a comment