I have a div and I have a link inside this div. I want the user to be able to click anywhere in the div and they go to the page that's in the link. The link can be changed to a <span>/<p>, that's not important. There are the following conditions, however:
- I cannot use css to make the
<a>tags intodisplay: block; - If I use onClick I want the user to be able to use the middle-mouse button (or right click, new tab) to open the page in a new tab if they so desire. I currently do not have this functionality if I use onClick and javascript.
- I want it to be valid CSS i.e. I don't want to have
<a><div> .... </div></a>
That pretty much sums up the problem I have. I've tried reading around but most people seem to solve the problem with either onclick, display: block or putting images, or forcing the user to open the page in a new window. I do not want any of these solutions, I just want a div to work as a normal link (if possible).
Many thanks
clickto thediv. Since you don't mention jQuery, using an image inside<a></a>in place of thedivseems like the most logical and semantically correct solution. – Sparky Nov 12 '11 at 16:32display: blockon thea. – Jared Farrish Nov 12 '11 at 16:44