Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML Achor Tag Hover Question

Status
Not open for further replies.

yimpinay

Programmer
Nov 20, 2003
3
US
I have this code, on mouseover it performs a function to display description and onmouseout it eliminates it. But when I select Print Function, I want to disable this hover function so it doesnt display the box for description. How do I do that? Can it be done in CSS? Please help.

<td class="padding-right" align="right"><A onmouseover="stm(Text[0],Style[0])" onmouseout="htmp()" href="../Description/glossary_terms.aspx#AAA"
target="_blank"><asp:label id="oGlossary" runat="server"></asp:label></A></td>

In my code behind, I do something like this, I disable some of the features at Print option:

If Request.QueryString("Print") = "true" Then
_styleSheet = "stylesP_new.css"
oPrintButton.Visible = True
oPrintV.Visible = False
MenuBar1.Visible = False
Footer1.Visible = False
Else
_styleSheet = "styles_new.css"
End If

Many thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top