Is there a way to use the following code:
$(document).ready(function () {
$('sd').hover(function() {
$(this).addClass('a');
}, function() {
$(this).removeClass('a');
});
});
without including the jquery file in my code? For example, is there a way to do exactly the same thing with pure javascript?