JQuery - DUDA SOBRE JALERT

 
Vista:

DUDA SOBRE JALERT

Publicado por SaulAngel (1 intervención) el 13/02/2015 18:38:51
Hola que tal ya tengo varias horas queriendo mostrar una ventana y no me aparece nada... aqui el codigo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Prueba JQuery</title>
<script type="text/javascript" src="JAVASCRIPT/jquery.js"></script>
<script type="text/javascript" src="JAVASCRIPT/jquery.alerts.js"></script>
<script src="JAVASCRIPT/jquery-ui.js" type="text/javascript"></script>
<link href="JAVASCRIPT/jquery.alerts.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready( function() {
 
	$("#alert_button").click( function() {
		jAlert('This is a custom alert box', 'Alert Dialog');
	});
</script>
</head>
<body>
<input id="alert_button" type="button" value="Show Alert" />
</body>
</html>

apenas empiezo con JQuery y no me aprecen la a ventana de alerta no se que me esta fallando o tal vez haya descargado las librerias in correctas alguien me puede ayudar.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder