1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <!DOCTYPE html>
<html>
<head>
<meta charset="iso-8859-1" />
<title>Votre titre</title>
<!-- inclusion du style CSS de base -->
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/smoothness/jquery-ui.css" />
</head>
<!-- inclusion des librairies jQuery et jQuery UI (fichier principal et plugins) -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
<body>
<script>
//Au chargement de la page
$(document).ready(function() {
$("#GoLink").click(function(e) {
e.preventDefault();
$("#GoLink").attr("href", "http://www.developpez.net");
var windowC = window.open($("#GoLink").attr("href"),'RecipeWindow','width=100,height=100');
$(windowC).load(function(){
// Le code placé ici sera déclenché au chargement complet de la page.
alert('Page chargée !');
});
});
});
</script>
<a id="GoLink" href="http://www.google.fr">Go</a>
</body>
</html> |
Partager