<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
$(document).ready(function(){
$('#btn').click(function(){
alert('yo');
});
});
</script>
</head>
<body>
<button id="btn">Button</button>
</body>
</html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#btn').click(function(){
alert('yo');
});
});
</script>