<html>
<head>
<script language="JavaScript">
function showhide(id, visibility) {
document.getElementById(id).style.display = visibility;
}
</script>
</head>
<body>
<a href='#' onMouseOver="showhide('divContent', 'inline');" onMouseOut="showhide('divContent','none');" onfocus="showhide('divContent','inline')"; onBlur="showhide('divContent','none')";>This program shows and hides a div using javascript.</a>
<div id="divContent">This program shows and hides a div using javascript.</div>
</body>
</html>
<a href="http://www.codecollege.NET">www.codecollege.NET</a>
Code to hide and show a div tag using javascript onmouseover and onfocus
Monday, January 18, 2010
Labels:
Articles,
Example Codes,
Javascript,
Samples
What are the secure communication technologies available in Asp.NET?
Labels:
.net,
asp.net,
Interview Questions and Answers
What is Multi-Targetting in .net?
Using it you can use Visual Studio 2008 to create projects that target .NET Framework version 2.0, 3.0, or 3.5.
www.codecollege.NET
Labels:
.net,
.NET 3.5,
Interview Questions and Answers
Subscribe to:
Posts (Atom)