Exercici missatge alerta

De wikiserver
Dreceres ràpides: navegació, cerca
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>jQuery</title>
<style>
boton { margin-top: 10px;}
</style>
</head>
<body>
<button id="boton">Script</button>
</body>
<script>
$(document).ready(function(){
$("#boton").click(function() {
$.getScript("alerta.js");
});
});
</script>
</html>


alert("Vengo del servidor");