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?
Well for one thing — jQuery was made to be cross browser.
There is such thing as a pure js fadeout, but it’s hideously complicated. (thanks @Pekka)
Also you would need some library do to the special selecting you want in the DOM.