The headers have the pointer cursor for me on the demo page. Did you follow the installation instructions including where it has, for example (from Step 2 on the demo page):
Code:
<h3 onClick="expandcontent('sc1')" style="cursor:hand; cursor:pointer">What is JavaScript?</h3>
<div id="sc1" class="switchcontent">
JavaScript is a scripting language originally developed by Netscape to add interactivity and power to web documents. It is purely client side, and runs completely on the client's browser and computer.
</div>
<h3 onClick="expandcontent('sc2')" style="cursor:hand; cursor:pointer">Differ . . .
?
Alternatively, if all of your headers have a class of header, you can put this in your stylesheet:
Code:
.headers{
font: bold 16px Arial;
cursor:hand;
cursor:pointer;
}
Bookmarks