Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

redirect to url on clicking in td space

Tags:

html

is there any way when to go to URL when user click in <td>.

like image 897
Ata Avatar asked Nov 15 '10 08:11

Ata


People also ask

How do I stop a redirect click?

Prevent Chrome RedirectClick the three dots in the top right corner of the Chrome window and choose Settings. Choose Privacy and Security from the options on the left of the screen and select Site Settings. On the screen is an option called Pop-ups and redirects, which should be set to Blocked.


1 Answers

<td><a href="http://example.com">&nbsp;</a></td>

or

<td onclick="window.location='http://example.com'"></td>
like image 162
x2. Avatar answered Sep 27 '22 19:09

x2.