Is it possible to do something like this? <div id="btn1" onclick="//somehow call page2Link here"><a href="page2.html" id="page2Link">Page 2</a></div>
Basically it's to try and make the text work with the a:hover text effect I have whilst making the whole layer sensitive to clicks.
i tried this already: <a href="page2.html" id="page2Link"><div id="btn1" ><a href="page2.html" id="page2Link">Page 2</a></div></a>
but it's untidy and a bit rubbish is there a better way to do it neatly?
I know i could always call a JS function to do a parent.location thing but i would rather not if possible.