Bonjour,
Ci dessous le code de la page.
Le texte recherché est pour le moment saisi dans
Je souhaiterai saisir le texte dans une liste déroulante du type :
J'ai bien repris l'id="filter" afin d'appeler la fonction"jQuery(document).ready(function()" placer dans le script en bas du code de la page mais cela ne fonctionne pas.Il y a certainement un point que je n'ai pas bien compris.
Merci pour votre aide ou pour une proposition d'un autre code.
Cordialement
Ci dessous le code de la page.
Le texte recherché est pour le moment saisi dans
<input type="text" id="filter" >
Je souhaiterai saisir le texte dans une liste déroulante du type :
<form>
<select id="filter" size="1">
<option>
<option>option_1
<option>option_2
<option>option_3
<option>option_4
</select>
</form>
J'ai bien repris l'id="filter" afin d'appeler la fonction"jQuery(document).ready(function()" placer dans le script en bas du code de la page mais cela ne fonctionne pas.Il y a certainement un point que je n'ai pas bien compris.
Merci pour votre aide ou pour une proposition d'un autre code.
Cordialement
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Surlignement de texte dans une page web</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="jcfilter.min.js"> </script>
</head>
<body>
<h3>Rechercher :
<input type="text" id="filter" >
</h3>
<div class="jcorgFilterTextParent">
<h3>This is header 1</h3>
<div class="jcorgFilterTextChild"> Hac magnis? Ac dignissim nec! Phasellus aliquet magnis nisi, cursus.
Habitasse mauris velit. Lacus! Augue scelerisque odio dolor, ultricies cursus? Magna! Integer nunc
odio, integer lacus, nec turpis </div>
</div>
<div class="jcorgFilterTextParent">
<h3>This is header 2</h3>
<div class="jcorgFilterTextChild"> blah blah blah blah blah blah blah blah blah blah blah blah blah
blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah
blah blah blah blah blah blah blah blah blah </div>
</div>
<div class="jcorgFilterTextParent">
<h3>This is header 3</h3>
<div class="jcorgFilterTextChild"> what the what the what the what the what the what the what the what
the what the what the what the what the what the what the what the what the what the what the what
the what the what the what the what the what the </div>
</div>
<div class="jcorgFilterTextParent">
<h3>This is header 4</h3>
<div class="jcorgFilterTextChild"> are you serious? are you serious? are you serious? are you serious?
are you serious? are you serious? are you serious? are you serious? are you serious? are you serious?
are you serious? are you serious? are you serious? are you serious? are you serious? are you serious?
are you serious? are you serious? are you serious? are you serious? are you serious? </div>
</div>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#filter").jcOnPageFilter({animateHideNShow: true,
focusOnLoad:true,
highlightColor:'yellow',
textColorForHighlights:'#000000',
caseSensitive:false,
hideNegatives:true,
parentLookupClass:'jcorgFilterTextParent',
childBlockClass:'jcorgFilterTextChild'});
});
</script></div>
</body>
</html>