Hi,
I have a div which i want to toggle fade but its not working. I am pasting the code below:-
<form id="form1" runat="server">
<div id="divTestArea4" style="width: 50px; height: 50px; display: none; background-color: #89BC38;"></div><br />
<a href="javascript:void(0);" onclick="ToggleBox();">Toggle box</a>
</form>
function ToggleBox() {
$("#divTestArea4").fadeToggle("slow");
} Could anyone tell me what's wrong in the code !
Thanks and Regards
Akiii