I'm trying to put a jquery code inside the script tag but nothing happens:
<!DOCTYPE html>
<html>
<head>
<title>Pruebas Javascript</title>
</head>
<body>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" scr="https://code.jquery.com/jquery-latest.min.js"></script>
<div align="center">
<h1>Formulario</h1>
<form class="form-horizontal">
Escribe tu nombre : <input id ="nombre" type="text" name="nombre" > <br><br>
Escribe tus apellidos : <input id ="apellidos" type="text" name="apellidos"><br><br>
Escribe tu edad : <input id ="edad" type="text" name="edad"><br><br>
<input type="button" id ="boton" name="boton" value = 'Aceptar' class="btn btn-primary" onclick="mostrar()">
</form>
</div>
<script type="text/javascript">
$("#boton").click( function(){
alert("nada");
});
</script>
</body>
</html>