Bonjour
je voudrais ouvrir une fenetre popup en cliquant dans une case de tableau.
voila mon code
Code html : 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
<html>
	<head>
	</head>
	<body>
		<table border="1">
			 <tr>
				<td>essai1</td>
				<td>essai2</td>
				<td>essai3</td>
				<td>essai4</td>
  			</tr>
  			<tr>
				<td onFocus="javascript:window.open('acceuil.html','_blank','width=800px, height=600px, resizable=no');"></td>
				<td>&nbsp;</td>
				<td>&nbsp;</td>
				<td>&nbsp;</td>
  			</tr>
  		</table>
 
	</body>
</html>
mais il ne marche pas. où est mon erreur.