Code Java pour Firefox

Eugoon -  
 eugoon -
Bonsoir,
J'ai inclus un moteur de recherche interne dans une page Web. Il fonctionne parfaitement dans Internet Explorer.
Mais il ne fonctionne pas dans Firefox.... et pour cause... il ma manque la variable Firefox que je ne connais pas.
Quelqu'un pourrait-il m'aider à compléter ces lignes ?

Merci d'avance.

Cordialement,
Eugoon

<script language="JavaScript">
var NS4 = (document.layers);
var IE4 = (document.all);
var win = window;
var n = 0;
function Rechercher(str) {
var txt, i, found;
if (str == "")
return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
// Si le mot n'a pas été trouvé (Netscape)
if (n == 0)
alert("Pas trouvé !");
}
if (IE4) {
txt = win.document.body.createTextRange();
// Find the nth match from the top of the page.
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n > 0) {
n = 0;
Rechercher(str);
}
// Si le mot n'a pas été trouvé (Explorer)
else
alert("Pas trouvé !");
}
}
return false;
}
</script>

<form name="Recherche" onSubmit="return Rechercher(this.mot.value);">
<input name="mot" type="text" size=50 onChange="n = 0;">
<br />
<br />
<select size="1" name="orand" style="BACKGROUND-COLOR: #FFFFFF; COLOR: #000000">
<option selected value="and">Tous les mots</option>
<option value="or">Au moins un des mots</option>
<option value="phrase">La phrase complète</option>
</select>
<br />
<br />
<input type="submit" value="Rechercher">
<hr />
A voir également:

2 réponses

Eugoon
 
Probleme résolu pour insérer un code java lu par Firefox.
0
eugoon
 
Problème Java dans Firefox résolu
0