Dear Zoom search engine makers, please explain, or add this feature to the zoom serach engine.
currently I am evaluating th version 5, and it is so happens that it does not search within the DIV tags.
for example:
create a webpage with the follwoing code
and have some of the DIV layers hidden:
<html>
<head>
<title>finance</title>
<script type="text/javascript">
var blocks_array = new Array("1","2","3","4","5","6","7","8","9","10", "11", "12"); // Put the id's of your hidden divs in this array
function display_blocks(block_id)
{
if (document.getElementById(block_id).style.display== "")
{
document.getElementById(block_id).style.display = "none";
return;
}
for (i=0; i<blocks_array.length;i++)
{
var blocks = document.getElementById(blocks_array[i]);
blocks.style.display = "none";
}
document.getElementById(block_id).style.display = "";
}
</script>
</head>
<body>
some text goes here
<br>
<a href="javascript:void(0)" class="headings" onClick="display_blocks('7')" onFocus="if(this.blur)this.blur()";><strong>Financ e</strong> </a>
<div class="para" id="7" style="display:none">
<p>
<!-- finance table starts here -->
some contents: goes here, for example, name, address, telephone number
</div>
for your uinformation if you change
<div class="para" id="7" style="display:none">
to
<div class="para" id="7" style="display:block">
you can see the content in the Dreamweaver to edit.
Basically, any word located within the DIV tags is not indexed.
Please help.
currently I am evaluating th version 5, and it is so happens that it does not search within the DIV tags.
for example:
create a webpage with the follwoing code
and have some of the DIV layers hidden:
<html>
<head>
<title>finance</title>
<script type="text/javascript">
var blocks_array = new Array("1","2","3","4","5","6","7","8","9","10", "11", "12"); // Put the id's of your hidden divs in this array
function display_blocks(block_id)
{
if (document.getElementById(block_id).style.display== "")
{
document.getElementById(block_id).style.display = "none";
return;
}
for (i=0; i<blocks_array.length;i++)
{
var blocks = document.getElementById(blocks_array[i]);
blocks.style.display = "none";
}
document.getElementById(block_id).style.display = "";
}
</script>
</head>
<body>
some text goes here
<br>
<a href="javascript:void(0)" class="headings" onClick="display_blocks('7')" onFocus="if(this.blur)this.blur()";><strong>Financ e</strong> </a>
<div class="para" id="7" style="display:none">
<p>
<!-- finance table starts here -->
some contents: goes here, for example, name, address, telephone number
</div>
for your uinformation if you change
<div class="para" id="7" style="display:none">
to
<div class="para" id="7" style="display:block">
you can see the content in the Dreamweaver to edit.
Basically, any word located within the DIV tags is not indexed.
Please help.
Comment