I have a problem that is as follows: I want the user to move the mouse on a certain image to another location and gain a class so that I can style it, can they help me?
I'm trying this way:
var $JQuery2 = jQuery.noConflict()
$JQuery2(function() {
$JQuery2(".bt_pagamento-facilitado").hover(function(){
$JQuery2(".bt_criacoes-exclusivas").addClass("redesAl");
});
});