Table contain digital values, each cell has each own href
.
If I'm apply hrefs like this:
nTd.click(function(e){
$(this).css("font-weight","bold");
e.stopPropagation();
location.href = 'http://google.com';
});
Each click on cell redirect window, I can't open new tab by "ctrl + click".
If I would add in TD
something like '<a href="http://google.com"> 123123 </a>'
, then sorting through digital values would breaks, into lexicographical order.