I have successfully implemented the addClass function in my code, but I'm encountering issues when attempting to use delay or setTimeout functions.
It's important to note that I'm avoiding the use of webkit attributes in CSS.
If anyone has experienced this issue before, please provide guidance.
$(document).ready(function(){
$('#table_Id tr td').mouseenter(function(){
$(this).parent('tr').addClass('blueBgColor');
});
});