For some reason clicking with Jquery doesn't work with table TD
elements in Electron. It works fine in a Chrome browser but not as an Electron app. All other elements are fine like div, li, span, button
etc...only td
doesn't work.
<td class="td">Test</td>
$('.td').click(function (e) {
console.log('test');
});
Any ideas why this is?
Electron version 5.0.1.
Chromium version 73.0.3683.121