Google Answers Logo
View Question
 
Q: Mouseover In Frontpage 2000 to Produce Text. ( No Answer,   1 Comment )
Question  
Subject: Mouseover In Frontpage 2000 to Produce Text.
Category: Computers > Software
Asked by: thebookguy-ga
List Price: $5.00
Posted: 05 Jan 2004 08:41 PST
Expires: 04 Feb 2004 08:41 PST
Question ID: 293315
I want to mouseover or hover over an item in my website, such as a
highlighted word, and a text box apears with info.

Clarification of Question by thebookguy-ga on 29 Jan 2004 12:01 PST
I appreciate the script but I don't know how to implement it in FP.
Answer  
There is no answer at this time.

Comments  
Subject: Re: Mouseover In Frontpage 2000 to Produce Text.
From: doclove-ga on 09 Jan 2004 19:07 PST
 
Here is how to do it with javascript which will work with Frontpage:

<html>
<head>
<SCRIPT LANGUAGE=javascript>
<!--
		function txt_Visible(){
			var obj = document.getElementById('txtbox');
			obj.style.visibility="visible";
			}
		function txt_Invisible(){
			var obj = document.getElementById('txtbox');
			obj.style.visibility="hidden";
			}
//-->
</SCRIPT>

</HEAD>
<BODY>
Hover your mouse <b onMouseOut='txt_Invisible();'
onMouseOver='txt_Visible();'>Here</b>
<input type="text" id="txtbox">
</BODY>
</html>

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy