Upon clicking the code snippet provided, it redirects me to a dynamically generated details page:
<tr class="itemList" onclick="location.href='Details/' + @item.ID">
However, my concern is that the target URL (website/Details/ID) does not display in the status bar when hovering over the table row. This also prevents users from opening the link in a new tab, as seen in browsers like Firefox where the status bar appears at the bottom left corner upon hovering over a link.
Is there a way to make this target URL visible in the status bar across different browsers and enable users to open the links in new tabs?
Thank you for your assistance.