[jQuery] Click or Find not working in IE7 but working in FF? whats wrong with this code?

[jQuery] Click or Find not working in IE7 but working in FF? whats wrong with this code?


The script below works in FF but not in IE7. I tracked down the
problem to .click().
Are there any issues with .click and IE7?
        <script type="text/javascript">
            $(".poster").find("#picture").click( function (){
            $(this).find("+ div").toggle(400)
        });
        </script>