Je rencontre un phénomène curieux ...
Ceci fonctionne

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<body >
	<noscript>
	<a href="www.google.com">google </a>
	</noscript>	
 
 
</body>
</html>
mais pas ceci
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
	<meta http-equiv="imagetoolbar" content="no" >
	<title>Les catalogues 2009 OUEST ISOL, AVIVIAR et SUFIX</title>
	<script type="text/javascript" src="jquery/jquery-1.2.6.min.js"></script>
	<script type="text/javascript" src="jquery/Tween.js"></script>
	<script type="text/javascript" src="jquery/jquery.carousel3d.js"></script>
    <style type="text/css" title="text/css">
		@import url("caroussel.css");
	</style>
	<script type="text/javascript">
                jQuery(function($) {$("#carousel").html($("#holder_images").html()).carousel3d({control: 'mouse', textBox:0, centerX: $('body').width()/2.4   }); });
        </script>
</head>
<body >
	<h2>Titre</h2>
	<noscript>
	<a href="www.google.com">google </a>
        </noscript>	
	<noscript >
	<h1 id="noscript" >
		Cette page nécessite l'activation de Javascript.
	</h1>	
	</noscript>
 
	<div id="carousel"> 
		<div id="holder_images">	
			<img class="link" longdesc="http://plugins.jquery.com/" src="Covers/CouvOI.png"   /> 
			<img class="link" longdesc="http://plugins.jquery.com/" src="Covers/CouvAV.png" /> 
			<img class="link" longdesc="../PAGE;HTM" src="Covers/CouvSU.png" /> 
		</div>
	</div>
	<div class="footer">Cliquez sur la couverture du Tarif pour l'ouvrir.</div>
</body>
</html>

???
le lien google apparait mais n'est pas actif ....

en quoi jquery pourrait il poser souci puisque js n'est pas activé ???