Bonjour,

Je fais un petit test et voici le résultat que je souhaiterais avoir...
1) Ouverture d'un site... ex:google
2) On attend 10 secondes
3) Ouverture d'un autre site... ex: microsoft.

Pour le moment, mon exemple m'affiche un message (alert('Google'), ouvre google et c'est tout !!! Je comprends pas pourquoi la suite de se fait pas correctement...

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
<html>
<head>
</head>
<script type="text/javascript">
{
 
function goGoogle()
{
alert('Google'); 
document.location =("http://www.google.com");
}
 
function goMicrosoft()
{
alert('Microsoft');
document.location =("http://www.microsoft.com"); 
}
function waitMicrosoft()
{
ID = self.setTimeout("goMicrosoft();",10000); 
} 
 
function executeFunction()
{
goGoogle();
waitMicrosoft();
}
}
</script>
<body>
<script language="JavaScript">
executeFunction();
</script>
</body>
</html>
Merci pour votre aide...