I want to make a whole row a clickable link. I used following code. It is working good. It working by clicking the row. But I couldn't open this with Ctrl+click. How to implement this with the Ctrl clicks?
jQuery(document).ready(function($) {
$(".clickableRow").click(function() {
window.document.location = $(this).attr("href");
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<tr class='clickableRow' href='url://'>
<td>Blah Blah</td>
<td>1234567</td>
<td>£158,000</td>
</tr>