I have a couple of buttons that when clicked, I changed their class using Jquery. My problem is that its only works if I call an alert first.
I know this must be due to something that has not been loaded yet, but I can't understand who and why.
This is my code:
<input type="button" id="About" class="menu_button" value="About"/>
<input type="button" id="Contact" class="menu_button" value="Contact" />
<script>
$(".menu_button").click(function()
{
//alert("onMenuClick");
$(".menu_button").removeClass("menu_button_selected");
$(this).addClass("menu_button_selected");
});
</script>
Thanks!