JQuery slidedown effect not working?

I have a form which when submitted would be validate first and if the form is not valid, it gill get back to the form page again and show errors.

This is the div that contains the error:

<div id="error"><?php echo validation_errors('<p class="error">'); ?></div>

I am using CodeIgniter by the way.

I wanted the form to slideDown when the user would be navigated back to the form page so I got a script:

$  (document).ready(function() {
    $  ('#error').slideDown('slow');
});

My problem is, I can’t figure how how to slide down the form even if I already have the script above. It will just show normally without any animations. Did I missed something?

Please do help me. Thanks in advance.

newest questions tagged jquery – Stack Overflow

About Admin