Click here to Skip to main content
15,886,798 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello guys,

I have used a anchor tag with href="#" and i m using jquery to show my login popup.
when i click the anchor, a login popup drops from the above of the page.and after logged in through the login popup, i want to hide that anchor tag.
this all i want dynamically.and i have also used the runat attribute for the tag.
but it doesn't working.

thank you in advance
Posted
Comments
BobJanova 24-Jun-11 5:51am    
Hide just on this instance of the page, or hide on subsequent pages as well, or both?

In the browser, hiding an element is simply
domElement.style.display = 'none'

from the code behind (server side)
anchorid.Visible=false ( add runat="server" )
or in client side javascript
document.getElementById("anchorid").style.cssText="display:none";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900