This might be a bit difficult to explain but I'll give it a good go.
I have an Intranet type site that I index in offline ASP mode. The purpose of using Zoom search is to provide the users with an easy way of searching for a specific document (pdf or doc), rather than the actual pages of the site. Users are able to navigate to the documents that they want using menus etc. I use the metadata and .desc files to categorise the documents and that works very well and I am happy with it.
If a user navigates through the site they are able to hover their mouse over an icon to have a tool tip pop up to show a snapshot of the document. These jquery tooltips (jquery Cluetip by Karl Swedberg) are pulled through via Ajax from individual html files. Below is an example of the html
The tip class on the link displays the html as designated by the rel...clear as mud??
What I want to do is be able to show the same tool tip in the SEARCH RESULTS. For example if the search returns a result for "actual.pdf" I want the user to be able to hover over the link (or search image) and have a tooltip display
Any thoughts would be greatly appreciated
I have an Intranet type site that I index in offline ASP mode. The purpose of using Zoom search is to provide the users with an easy way of searching for a specific document (pdf or doc), rather than the actual pages of the site. Users are able to navigate to the documents that they want using menus etc. I use the metadata and .desc files to categorise the documents and that works very well and I am happy with it.
If a user navigates through the site they are able to hover their mouse over an icon to have a tool tip pop up to show a snapshot of the document. These jquery tooltips (jquery Cluetip by Karl Swedberg) are pulled through via Ajax from individual html files. Below is an example of the html
HTML Code:
<a href="link to doc.pdf" target="_blank" class="tips" rel="link to tooltip.html" >
What I want to do is be able to show the same tool tip in the SEARCH RESULTS. For example if the search returns a result for "actual.pdf" I want the user to be able to hover over the link (or search image) and have a tooltip display
Any thoughts would be greatly appreciated
Comment