How do you make a div tag into a link. I would like my entire div to be clickable.
|
|
JS:
jQuery:
Make sure to use |
|||||||
|
|
DON'T DO IT.
... |
|||
|
|
|
If you have to set your anchor tag inside the div, you can also use CSS to set the anchor to fill the div via display:block. As such:
Now when the user floats their cursor in that div the anchor tag will fill the div. |
|||
|
|
You can make the entire DIV function as a link by adding an onclick="window.location='TARGET URL'" and by setting its style to "cursor:pointer". But it's often a bad idea to do this because search engines won't be able to follow the resulting link, readers won't be able to open in tabs or copy the link location, etc. Instead, you can create a regular anchor tag and then set its style to display:block , and then style this as you would a DIV. |
|||
|
|
|
|||
|
|
|||
|
|
|
You could use Javascript to achieve this effect. If you use a framework this sort of thing becomes quite simple. Here is an example in jQuery:
This solution has the distinct advantage of keeping the logic not in your markup. |
|||
|
|