here's my js:
$(document).ready(function() {
$('.LoginContainer').hide();
$('.list li a').click(function(){
$('.LoginContainer').toggle();
});
});
This only makes the div with class="loginContainer" appear for a split second and then dissapear. I want for the div to appear when I click the link, and then dissapear when I click the link again.