I have some DIVs, with the classname "teste". On the console, I'm running this code:
$(".teste").mouseover(function(){
$(this).css("transform", "scale(1.5)");
});
$(".teste").mouseout(function(){
$(this).css("transform", "scale(1)");
});
It is running so fine, but when I put on my extension, on the content script, it not work.
Maybe I have to do a background script to listen to this event, but I'm having a hard time to find an example compatible with my code.
Can anyone help me please?