gicio Posted February 16, 2004 Posted February 16, 2004 Hi!! can someone tell me where I can gind some information to get this cool feature to hidde text as it's used in the ASP.NET Forums beta search ??? like here: http://www.asp.net/Forums/Search/SearchResults.aspx?q=development need I a special control??? best regards, gicio Quote
kahlua001 Posted February 16, 2004 Posted February 16, 2004 Use javascript to toggle the visibility of div layers that you generate. ie.. <div id="Post100" style="DISPLAY:none">Contents</div> then in your onClick the javascript would be document.getElementById("Post100").style.display = "block"; or document.getElementById("Post100").style.display = "none"; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.