A voir également:
- JAVASCRIPT - dans menu pointer sur un signet
- Menu déroulant excel - Guide
- Comment inserer une video dans un power point - Guide
- A javascript error occurred in the main process - Forum Matériel & Système
- Canon quick menu - Télécharger - Utilitaires
- Mettre des points sur une carte - Guide
1 réponse
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!--
Author: HackTrack
Creation: 24-05-2004
-->
<head>
<script language="javascript" type="text/javascript">
function forward(selectId){
select = document.all(selectId);
if(select.selectedIndex > -1){
document.location.href=select.options[select.selectedIndex].value;
}
}
</script>
</head>
<body>
<select id="testSelect" onchange="forward(this.id);">
<option value="https://www.google.be/?gws_rd=ssl">Google
<option value="https://www.commentcamarche.net/">CCM
<option value="https://outlook.live.com/owa/">Hotmail
</select>
</body>
</html>
;-)
HackTrack