1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script>
var ccmUrl = "'http://www.blabla.com'";
function confirmAction(message,action){
alert(action);
if(confirm(message)){
eval(action);
}
}
</script>
</head>
<body>
<form name="deleteform" action="http://www.kikoolol.com">
<button type="button" onclick="confirmAction('Etes-vous certain de voulir aller sur kikoolol ?','document.deleteform.submit()');">Aller sur kikoolol</button>
</form>
<a name="blabla_anchor" href="javascript:confirmAction('Etes-vous certain de voulir aller sur blabla ?','document.location.href='+ccmUrl);">Aller sur blabla</a>
</body>
</html> |