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 31 32 33 34 35 36 37 38 39 40 41 42 43
| <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://www.toupil.fr/js/jquery/jquery-1.js"></script>
<!-- fenetre modale de présentation de facebook (groupe, page, webmaster) -->
<script type="text/javascript" src="http://www.toupil.fr/js/jquery/jqModal/jqModal.js"></script>
<link rel="stylesheet" type="text/css" href="http://www.toupil.fr/js/jquery/jqModal/common.css" />
<link rel="stylesheet" type="text/css" href="http://www.toupil.fr/js/jquery/jqModal/jqModal.css" />
<script type="text/javascript">
$().ready(function() {
$('#modale').jqm();
});
</script>
<!-- fenetre modale pour déposer une annonce -->
<script type="text/javascript">
$().ready(function() {
$('#deposer_annonce').jqm();
});
</script>
</head>
<body style="background-color:#ffffff;">
<a href="#" class="jqModal">premier</a>
<div class="jqmWindow" id="deposer_annonce" style="width:50px;height:50px;">
<a href="#" class="jqmClose">Close</a>
aa
</div>
<a href="#" class="jqModal">second</a>
<div class="jqmWindow" id="modale" style="width:100px;height:100px;">
<a href="#" class="jqmClose">Close</a>
bb<br />
cc<br />
dd
</div>
</body>
</html> |
Partager