I have this jQuery handler :
$('a[rel="entra_handler"]').hover(
function() {
$(this).children().fadeOut(200);
},
function() {
$(this).children().fadeIn(200);
}
);
and I'd like to convert it to pure Javascript, that works with every kind of browsers. Is it easy and possible?