layers as links
layers as links
Out of context: Reply #8
- Started
- Last post
- 12 Responses
- neverblink0
put this in your head, it will ensure that people will see that the div is clickable by changing the cursor:
<style>
.clickable{
cursor: pointer;
background-color: #CCC;
}
</style>and this in your body:
<div id="box1" class="clickable" onmouseover="rollover()" onmouseout="rollout()" onclick="alert('I can be clicked')"> content of div </div>