document.all() - is a non-standard way of accessing DOM elements. It was introduced in Internet Explorer 4, because the W3C DOM …
Topic Archives: HTML
Creating a simple popup
This tutorial will guide you create a simple popup based on CSS and Javascript
1. Create a simple div
HTML
<div id=”overlayContent” style=”display:none;z-index:110;width:100%;position:absolute;left:0;top:25;height:200px;”> …
Changing fieldset tag line color
This can be done by using the style property of <fieldset> tag
Code Sample :
<fieldset style=”border-color: #ff0000;”>
