On Apr 6, 6:18 pm, gostbuster <jeremyescol...@gmail.com> wrote: > Here is my test code : > > <script type="text/javascript"> > $(function (){ > $("#effet").click(function (){ > $(this).fadeOut("slow"); > $(this).fadeIn("fast"); > > });}); > > </script> > <div id="effet">bonjour</div> > > When I click, the div should fadeOut and fadeIn but it doesn't.
I pasted your code into js bin and it works there: http://jsbin.com/avexi Compare closely, the difference must be elsewhere in your code. Good luck! Hope that helps!