How to open list item (or folder) when user click on item row (not on linktitlenomenu column)? By default sharepoint select this item and I need select items by clicking on checkbox only and open item otherwise. I see many different jQuery scripts, but I find only how to get link on item with jQuery:
$(document).ready(function () {
$('.ms-itmhover').each(
function () {
var a = $(this).find("td div[Field=LinkFilename] a")
alert(a.attr('href'));
}
);
});
But I dont't know how to paste this url in row onclick handler.