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
| <html>
<head>
<!-- Scripts Google : initialisation jquery -->
<script charset="utf-8" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(function() {
$('#divpatientez').hide();
$(window).bind('beforeunload', function()
{
$('#divpatientez').show();
});
});
</script>
<style type="text/css">
#divpatientez {
display:none; position:absolute;
width:220px; height:40px; left:50%; top:50%; margin:-20px 0 0 -110px;
background:url('http://location-voiture.lastminute.com/FRA/aff/lmn/images/patientez.png') center center no-repeat;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id="divpatientez" style=""></div>
</body>
</html> |