I'm new to JQuery. I have a button with a css-class that is working fine, but I want to change the css-class when I hover the button.
How do I code this?
This is what I got so far:
//on top in my heading:
<script type="text/javascript">
$('btn').hover(function () {
alert("Test"); //just for testing
});
</script>
//my button:
<button id="btn" class="default_btn">ButtonText</button>