Forum Moderators: open
<script type='text/javascript'>
function showTip(a)
{
a.nextSibling.nextSibling.style.display='';
}
function hideTip(a)
{
a.nextSibling.nextSibling.style.display='none';
}
</script>
<input type='text' onfocus='showTip(this);' onblur='hideTip(this);'/>
<div>write good stuff in that box you just clicked on</div>
<style type='text/css'>
div {display:none;}
</style>
<script type='text/javascript'>
function showTip(a)
{
a.nextSibling.nextSibling.style.display='';
}
function hideTip(a)
{
a.nextSibling.nextSibling.style.display='none';
}
</script>
<input type='text' onfocus='showTip(this);' onblur='hideTip(this);'/>
<div>write good stuff in that box you just clicked on</div>
<script type='text/javascript'>
function showTip(a)
{
a.nextSibling.nextSibling.style.display='';
}
function hideTip(a)
{
a.nextSibling.nextSibling.style.display='none';
}
</script>
<input type='text' onfocus='showTip(this);' onblur='hideTip(this);'/>
<div style='display:none;'>write good stuff in that box you just clicked on</div>
I know the css and probably js should be in the head in the examples
[edited by: Skier88 at 10:55 pm (utc) on Nov 9, 2010]