I have the following HTML code:
<select name="forma">
<option value="Home">Home</option>
<option value="Contact">Contact</option>
<option value="Sitemap">Sitemap</option>
</select&…
I am trying to hover the area tag of HTML. I tried this in CSS:
area:hover
{
border:1px solid black;
}
This is the HTML on which it should be applied.
<!-- This imagemap inserted by Gwyn's Imagemap Selector …
I would like to add a current date to a hidden HTML tag so that it can be sent to the server:
<input type="hidden" id="DATE" name="DATE" value="WOULD_LIKE_TO_ADD_DATE_HERE">
How can …