ページでテキストを検索しようとしています。テキストが見つかった場合は、ページをリロードします。
<p class="textmedium">These are the droids I'm looking for</p>
ページでテキストを検索しようとしています。テキストが見つかった場合は、ページをリロードします。
<p class="textmedium">These are the droids I'm looking for</p>
ユーザー jquery の JavaScript:
<p class="textmedium" id="ptag" >These are the droids I'm looking for</p>
<script type="text/javascript" >
var text = $("#ptag").html();
var isFound = text.search(/word-you-are-searching-for/i);
if(isFound){
document.href="page you redirect to";
}
</script>