Hello,
I created a drop down Login box so when i click my "LOGIN" button a login form slides down, but when i try to enter text in the forms the Login forms disappears.
Can you help me figure out why and a way to fix this?
This is the jquery script I run:
- $(document).ready(function(){
- $('#button').click(function(){
- $('#login-form').slideToggle('fast');
- });
- });