Greetings,
Imagine a button already with opacity ".5":
on mouseover
sym.$("button").css("opacity", "1");
on mouseout
sym.$("button").css("opacity", ".5");
on click
"otherstuff"
sym.$("button").css("opacity", "1");
So when i click it the opacity is "1" but when i take the mouse from the button it goes to ".5" again!!
What am i doing wrong!?
Thanks in advance!!