layers as links
layers as links
Out of context: Reply #3
- Started
- Last post
- 12 Responses
- neverblink0
CSS:
.clickable{
cursor: pointer;
}html:
<div id="box1" class="clickable" onmouseover="rollover()" onmouseout="rollout()" onclick="alert('I can be clicked')"> content of div </div>