Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/04/2012, 23:33
jorge_anibal
 
Fecha de Ingreso: marzo-2003
Mensajes: 164
Antigüedad: 21 años, 1 mes
Puntos: 0
Llamar un javascript desde jquery

buen dia de ante mano gracias por la atencion y ayuda.

tengo una pagina con jquery y leyendo dicen que para llamar un javascript hecho por mi deboi de hacer esto, pero no me funciona, alguien sabe como puedo hacer esto gracias de nuevo

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin t&iacute;tulo</title>
</head>

<body>
<a href="">Link</a>
</body>
</html>
<script>
$(document).ready(function() {
$("a").click(function() {
alert("Hello world!");
});
});
</script>