JQuery toggle problem
- by Mazhar Ahmed
I'm using JQuery. I'm writing this as HTML code:
<li id="toggle">
<a id="open" class="open" href="#">Log In | Register</a>
<a id="close" class="close" style="display: none;" href="#">Close Panel</a>
</li>
and I'm writing a code like that:
$(document).ready(function() {
// Expand Panel
…