Click Entire Row (preserving middle click and ctrl+click) - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:23:13Zhttp://stackoverflow.com/feeds/question/890743http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick5Click Entire Row (preserving middle click and ctrl+click)Brian Fisher2009-05-20T23:32:22Z2009-07-25T06:58:49Z
<p>I have an HTML table, with a link in the first column. I want to allow the user to click on anywhere in the row to activate that link. At the same time I would like to preserve the middle click and ctrl+click functionality of opening a new tab/window. Here is an example of the table:</p>
<pre><code><table id="row_link">
<tbody>
<tr>
<td><a href="link1.html">link</a></td>
<td>info 1</td>
</tr>
<tr>
<td><a href="link2.html">link</a></td>
<td>info 2</td>
</tr>
</tbody>
</table>
</code></pre>
<p>Using jQuery I can allow the user to left click anywhere in a row:</p>
<pre><code>$("table#row_link tbody tr").click(function () {
window.location = $(this).find("a:first").attr("href");
});
</code></pre>
<p>This of course disables the standard middle click and ctrl+click functionality of opening a new tab. Is there a better way to allow users to click on the entire row, while preserving the standard middle click and ctrl+clcik behavior?</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/890915#8909150Answer by psayre23 for Click Entire Row (preserving middle click and ctrl+click)psayre232009-05-21T00:36:04Z2009-05-21T00:36:44Z<p>You could grab the event and look at it's event code. But there is no real way to know what a browser's behavior for those events.</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/891001#891001-3Answer by A Hassan for Click Entire Row (preserving middle click and ctrl+click)A Hassan2009-05-21T01:10:40Z2009-05-21T01:10:40Z<p>you need to remove the < tbody > tag</p>
<p>and just use the 'href' attribute to get the link destination and dont to select the anchor < a > tag too because thats contains the href attribute.</p>
<pre><code>$("table#row_link tbody tr a").click(function () {
window.location = $(this).attr("href");
});
</code></pre>
<p>or simply make the link open a new tab.</p>
<p>i hope that helps you.</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/902211#9022110Answer by for Click Entire Row (preserving middle click and ctrl+click)2009-05-23T18:58:10Z2009-05-23T18:58:10Z<p>Here's something that should work: Instead of using window.location, us .click() to emulate a click on the first inside the element. Also, use a conditional to check for Ctl+Click.</p>
<p>Should look like this:</p>
<pre><code>$("table#row_link tbody tr").click(function (e) {
if(e.ctrlKey) {
// Run Ctl+Click Code Here
} else {
$(this).children('a').eq(0).click();
}
}
</code></pre>
<p>Hope this helps!</p>
<p>Dave Romero</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/902594#9025947Answer by Nadia Alramli for Click Entire Row (preserving middle click and ctrl+click)Nadia Alramli2009-05-23T22:07:16Z2009-05-26T11:06:06Z<p><strong>EDIT</strong></p>
<p>This is simple problem that has a simple solution. I don't see a need for nasty hacks that might break on some browsers or take processing time. Especially because there is a neat and easy CSS solution.</p>
<p>First here is a <a href="http://nadiana.com/sites/default/files/example/clickable.html" rel="nofollow">demo</a></p>
<p>Inspired by <a href="http://stackoverflow.com/questions/569355/html-table-row-link/570005#570005">@Nick solution</a> for a very similar issue, I'm proposing a simple css+jquery solution.</p>
<p>First, here is the mini-plugin I wrote. The plugin will wrap every cells with a link:</p>
<pre><code>jQuery.fn.linker = function(selector) {
$(this).each(function() {
var href = $(selector, this).attr('href');
if (href) {
var link = $('<a href="' + $(selector, this).attr('href') + '"></a>').css({
'text-decoration': 'none',
'display': 'block',
'padding': '0px',
'color': $(this).css('color')
})
$(this).children()
.css('padding', '0')
.wrapInner(link);
}
});
};
</code></pre>
<p>And here is a usage example:</p>
<pre><code>$('table.collection tr').linker('a:first');
</code></pre>
<p>And All the CSS you need:</p>
<pre><code>table.collection {
border-collapse:collapse;
}
</code></pre>
<p>It's as simple as that.</p>
<p><hr /></p>
<p>You can use the event object to check the mouse click type. This <a href="http://abeautifulsite.net/notebook/99" rel="nofollow">article</a> is discussing a similar issue.</p>
<p>Anyway, here is how to do it:</p>
<pre><code>$("table#row_link tbody tr").click(function () {
if((!$.browser.msie && e.button == 0) || ($.browser.msie && e.button == 1)){
if (!e.ctrlKey) {
// Left mouse button was clicked without ctrl
window.location = $(this).find("a:first").attr("href");
}
}
});
</code></pre>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/902614#902614-2Answer by mr-euro for Click Entire Row (preserving middle click and ctrl+click)mr-euro2009-05-23T22:18:20Z2009-05-23T22:23:21Z<p>Try putting the a around the td and then apply a display:block CSS element to the td.</p>
<p>That should make the entire area of the td clickable with all buttons as a "normal" link.</p>
<p>An example is probably better:</p>
<pre><code><table id="row_link">
<tbody>
<tr>
<a href="link1.html"><td style="display: block;">link</td></a>
<td>info 1</td>
</tr>
<tr>
<a href="link2.html"><td style="display: block;">link</td></a>
<td>info 2</td>
</tr>
</tbody>
</table>
</code></pre>
<p>A similar approach has worked in the past for me, although it was not exactly for table elements. Untested with tables so try it.</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/902708#9027080Answer by jrista for Click Entire Row (preserving middle click and ctrl+click)jrista2009-05-23T23:25:53Z2009-05-23T23:32:06Z<p>This plugin for jQuery should do the trick:</p>
<p><a href="http://abeautifulsite.net/notebook/68" rel="nofollow">http://abeautifulsite.net/notebook/68</a></p>
<p>EDIT: Sorry, I misread your post. You want to "preserve" the middle and right click default capabilities. The script above would let you handle the right click. I am a bit surprised that handling the left click kills off the middle and right clicks. Does that happen in every browser? Or only certain ones?</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/903462#903462-2Answer by Eystein for Click Entire Row (preserving middle click and ctrl+click)Eystein2009-05-24T10:05:22Z2009-05-24T10:05:22Z<p>I think the <a href="http://plugins.jquery.com/project/biggerlink" rel="nofollow">biggerlink plugin</a> will do what you ask for. Here's the </p>
<ul>
<li><a href="http://www.ollicle.com/2007/oct/23/jquery%5Flink%5Fplugin.html" rel="nofollow">article</a>, and</li>
<li><a href="http://www.ollicle.com/eg/jquery/biggerlink/#eg" rel="nofollow">demo</a> too.</li>
</ul>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/903520#9035205Answer by Pim Jager for Click Entire Row (preserving middle click and ctrl+click)Pim Jager2009-05-24T10:53:09Z2009-05-25T07:40:47Z<p>You want this:</p>
<pre><code>$('table#row_link tbody tr').mousedown( function(e){
if(e.ctrlKey || (!$.browser.msie && e.button == 1) || ($.browser.msie && e.button == 4)){
//middle mouse button or ctrl+click
} else {
//normal left click
}
});
</code></pre>
<p>This is tested in FF3.0.10, Chrome 1.0 and IE6. I use the mousedown event because neither firefox or IE passes the middle mouse button click to a .click(fn) event.</p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/905896#90589614Answer by J-P for Click Entire Row (preserving middle click and ctrl+click)J-P2009-05-25T08:38:39Z2009-05-25T18:26:08Z<p>Unfortunately there is no way to simulate a link and all associated behaviour in every browser. Therefore, the only way to achieve what you want is to have a link that follows the cursor around the <code><tr></code> element; this link would be invisible so, to the user, it looks like they're clicking on the <code><tr></code> but they're actually clicking on a hidden link. Using this method, the middle-button, ctrl+click and any other behaviours are left intact!</p>
<p>Here's a DEMO: <strong><a href="http://jsbin.com/ufugo" rel="nofollow">http://jsbin.com/ufugo</a></strong></p>
<p>And here's the code:</p>
<pre><code>$("table tr").each(function(){
var $link = $('a:first', this).clone(true),
dim = {
x: [
$(this).offset().left,
$(this).offset().left + $(this).outerWidth()
],
y: [
$(this).offset().top,
$(this).offset().top + $(this).outerHeight()
]
}
$link
.click(function(){
$(this).blur();
})
.css({
position: 'absolute',
display: 'none',
// Opacity:0 means it's invisible
opacity: 0
})
.appendTo('body');
$(this).mouseover(function(){
$link.show();
});
$(document).mousemove(function(e){
var y = e.pageY,
x = e.pageX;
// Check to see if cursor is outside of <tr>
// If it is then hide the cloned link (display:none;)
if (x < dim.x[0] || x > dim.x[1] || y < dim.y[0] || y > dim.y[1]) {
return $link.hide();
}
$link.css({
top: e.pageY - 5,
left: e.pageX - 5
})
});
});
</code></pre>
<h2>EDIT: </h2>
<p>I created a jQuery plugin using a slightly better aproach than above: <strong><a href="http://james.padolsey.com/javascript/table-rows-as-clickable-anchors/" rel="nofollow">http://james.padolsey.com/javascript/table-rows-as-clickable-anchors/</a></strong></p>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/906184#9061840Answer by AnhTu for Click Entire Row (preserving middle click and ctrl+click)AnhTu2009-05-25T10:27:45Z2009-05-25T10:27:45Z<p>You can make a link and let it floting around in your tr, biding to mouveover event, update href and position</p>
<p>create one pixel link</p>
<pre><code><table id="row_link">....</table>
<a id="onepixel" style="position:absolute;z-index:1000;width:1px;height:1px;"></a>
</code></pre>
<p>update href and position on mouse over</p>
<pre><code>$("#row_link tr").mouseover(
function(event){
//update href
$("#onepixel").attr("href",$(this).find("a:first").attr("href"));
//update position, just move to current mouse position
$("#onepixel").css("top",event.pageY).css("left",event.pageX);
}
);
</code></pre>
http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick/921825#9218252Answer by Gareth Farrington for Click Entire Row (preserving middle click and ctrl+click)Gareth Farrington2009-05-28T16:23:45Z2009-05-28T16:23:45Z<p>I would attack this from the HTML/css side. This used to be a common problem when most sites did all layout in tables.</p>
<p>First make the contents of all table cells into links. If you don't want them to look like links you can use CSS to remove the underline from the 'non link' cells. But they will be links, which is semantically what you want anyway.</p>
<p>Next you want to make the link expand to fill the entire cell. StackOverflow already knows the <a href="http://stackoverflow.com/questions/546946/css-make-a-block-element-fill-the-entire-space-of-a-parent-element">answer to this</a>:</p>
<p><code>td a
{
display: block;
width: 100%;
height: 100%;
line-height: 100%;
}
</code></p>
<p>With a typical table with no spaces between the cells the entire row will be clickable. And since this relies on no tricks or browser specific hacks it should work everywhere.</p>