![]() |
|
|
| 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 |
|
| There is no answer at this time. |
|
| 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> |
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 Home - Answers FAQ - Terms of Service - Privacy Policy |