vote up 0 vote down star
1

How do you make a div tag into a link. I would like my entire div to be clickable.

flag

7 Answers

vote up 1 vote down

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:

<div style="height: 80px"><a href="#" style="display: block">Text</a></div>

Now when the user floats their cursor in that div the anchor tag will fill the div.

link|flag
In Firefox 3.5 and IE8, I have to add "height: 100%;" to the anchor tag for it to take up the whole DIV height. Great alternative to the Javascript solutions. – Seh Hui 'Felix' Leong Nov 6 at 4:41
vote up 0 vote down

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:

$('div#id').click(function (e) {
  // Do whatever you want
});

This solution has the distinct advantage of keeping the logic not in your markup.

link|flag
vote up 5 vote down

DON'T DO IT.

  • If you wants a link, wraps the content in a proper <A>NCHOR</a>.
  • If you wants to turns the <DIV> into a link, use "Javascript" to wraps the <DIV> inside an <A>NCHOR</A>
  • If you want to perform some actions on clicking the <DIV> use the onclick event handler. And don't call it a "link".

...

link|flag
vote up 0 vote down
<div onclick="document.location='http://www.google.com'">Content Goes Here</div>
link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

JS:

<div onclick="location.href='url'">content</div>

jQuery:

$("div").click(function(){
   window.location=$(this).find("a").attr("href"); return false;
});

Make sure to use cursor:pointer for these DIVs

link|flag
1  
If I didn't understand the jQuery sample wrongly, the HTML have to be structured this way: <div><a href="yourlinkhere">Your link text</a></div> – Seh Hui 'Felix' Leong Nov 6 at 2:49
Yes, and thats probably a better way to do it. I just posted it as an alternative. – Nimbuz Nov 6 at 6:08
vote up 0 vote down
<div style="cursor:pointer;" onclick="document.location='http://www.google.com'">Foo</div>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.