Olá a todos. Estou tendo o seguinte problema: Quando eu utilizo uma função dentro da tag form, ela não funciona. Segue código abaixo.
HTML:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mystyle.css">
<script src="myscript.js"></script>
<title>Document</title>
</head>
<body>
<div class="box1">
<form>
<p id="demo">ALTERAR</p>
<button onclick="myFunction()">Altere aqui.</button>
</form>
</div>
</body>
</html>
CSS
.box1{
width: 250px;
height: 250px;
background-color: #ffcc90;
margin: auto;
margin-top: 200px;
border-radius: 15px;
}
fieldset{
width: 50px;
height: 220px;
border-radius: 5px;
}
JAVASCRIPT
function myFunction(){
document.getElementById('demo').innerHTML = 'novo texto'
}
Não consigo entender por que que não funciona.