My hover()
is not working. When I do click()
, it works though:
$( "#testcard" ).on( "hover", 'tbody #thei',
function() {
console.log("in");
}, function(){
console.log("out");
});
This would work for me, so tomc's answer worked just fine for me.