Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6655013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:27:40+00:00 2026-05-26T01:27:40+00:00

In the following example, the word Test is not clickable in Internet Explorer, even

  • 0

In the following example, the word Test is not clickable in Internet Explorer, even though the link URL appears at the bottom of the page when it’s hovered over, and the link’s area is represented accurately in the horrible IE debugging tool (F12). This works fine in all other browsers (of course).

<a href="/"><table><tr><td>Test</td></tr></table></a>

I know it’s not technically valid to nest a table inside a hyperlink tag, but it’s really the only practical way to do what I want to accomplish, and seeing how it works fine in all browsers, is there a way to get it to work in IE?

So far, I’ve tried giving both the table and link a height, width, and also a display property of inline-block. None have worked. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:27:41+00:00Added an answer on May 26, 2026 at 1:27 am

    You say “seeing how it works fine in all browsers” — but that’s really not true. What’s actually happening in some browsers is they’re doing work to make it work.

    Do something like this instead:

    <table onclick="location.href='/'" style="cursor: hand;">
    <tr><td>Test</td></tr>
    </table>
    

    Also a hack, but a more valid one.

    UPDATE

    If you have concens about crawlers, there are two possible approaches. One is to add a link after, something like:

    <table onclick="location.href='/'" style="cursor: hand;">
    <tr><td>Test</td></tr>
    </table>
    <a href="/" style="display:none;">Test</a>
    

    You can also use a <link> tag in the <head> of the document, something like:

    <link href="/" rel="section" />
    

    Or whatever link rel type makes sense.

    Additionally, HTML structured as you have in your question is invalid according to the spec. In terms of what works reliably and into the future, your code does not qualify. Code written more towards an eye on standards will work more reliably.

    ANOTHER UPDATE

    Given your comment, here’s how I would structure this, assuming markup like this:

    <table class="dataTable">
        <tr>
           <td><img></td>
           <td>Description</td>
           <td><a href="/" class="details">Details</a></td>
        </tr>
    </table>
    

    Your details link represents the link you’re using, so what I would do is add this bit of JavaScript (uses jQuery, but could be rewritten for whatever libraries you’re currently using:

    <script>
    jQuery(function($){
      $('table.dataTable').delegate('td', 'click', function(){
        $(this).find('a.details').trigger('click');
      });
    });
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can you sort the following word by the given rule? Example data is
Example: Suppose in the following example I want to match strings that do not
I have the following example class: Test.h: @interface Test : UIButton { NSString *value;
I need to get the very last word from an URL. So for example
In the following example, the word Goodbye doesn't render (in Chrome 14, anyway): <html>
I do the following in order to get all WORD in file but not
Consider following example : public class SomeBusinessLayerService : DataService<MyEntityContainer> { [WebInvoke] void DoSomething(string someParam)
Given the following example, why do I have to explicitly use the statement b->A::DoSomething()
Let me use the following example to explain my question: public string ExampleFunction(string Variable)
In the following example should I expect that values.size() will be called every time

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.