vote up 1 vote down star

The problem: when surrounding a table with an anchor tag, the table and everything within is not clickable in IE 6, 7 & 8. How do I solve this issue assuming I can't replace the table with divs?

Sample code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">

<head>
  <title>Test</title>
</head>
<body>

<a href="http://www.google.com">
  <table height="35">
    <tr>
      <td>I'm a link in a table, bet you can'tclick me!</td>
    </tr>
  </table>
</a>

</body>
</html>
flag

Is it a big table with lots of elements? – Larsenal Sep 21 at 23:40
1  
FWIW wrapping a link around any block element, whether a table or a div, is just as invalid. – bobince Sep 21 at 23:44
Interesting, your sample code works as you expect in Google Chrome and Firefox, but not IE... – Scott Ferguson Sep 21 at 23:45
I did try the example. I just wanted to get a feel for the scope of the HTML he would be generating. For example, Asaph's solution--while perfectly valid--may be less than optimal if he has a table with 100's of cells. If you really just want any click on the whole table to go to some URL, then JS or another method may make sense. – Larsenal Sep 21 at 23:48

3 Answers

vote up 6 vote down check

You can add a JavaScript onclick event handler on the table to do the same thing as the link.

Edit: Removed initial suggestion since it behaved badly in other browsers.

link|flag
vote up 3 vote down

Why not do this?

<table height="35">
    <tr>
      <td><a href="http://www.google.com">I'm a link in a table, bet you can click me!</a></td>
    </tr>
</table>
link|flag
1  
+1 this is the right thing (valid and cross-browser compatible), long-winded though it may be for a very large number of cells. – bobince Sep 21 at 23:43
The example I provided was a very simplified version of my problem. In the table I was actually trying to work with there are 8-10 cells depending on content. That would make for a lot of extra markup I don't want to have. – PHLAK Sep 22 at 15:58
This solution technically isn't equivalent because the entire box is not clickable. That being said, you could expand the size of the anchors to fill the box if your layout does NOT use cellspacing/padding/margins. – NickLarsen Oct 26 at 17:06
vote up 1 vote down

You can't have a table inside an anchor tag, as the table is a block tag and the anchor is an inline tag. Block tags don't go inside inline tags, so the code is invalid. Replacing the table with div elements doesn't work either, as they also are block elements.

The standards specifies how valid code should work, but not how invalid code should work. Different browsers have different methods of making the best of the situation. One alternative in this case is to move the anchor inside the table, another alternative is to move the table out of the anchor. Either method will give the desired result in some situations but not others.

The only way to reliably put a block element inside an anchor, is to use an element that is an inlinde element by default, and use CSS to turn both elements into block elements:

<a href="http://www.guffa.com" style="display:block;"><span style="display:block;">Eat me</span></a>

The code is valid as both elements are inline elements by default, and it works after the style is applied as a block element can be inside another block element.

link|flag

Your Answer

Get an OpenID
or

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