I'm using jquery in my IPB forum and i had no problem at all using jQuery.noConflit
But now i'm having issues with e fadeIn function
I have a <a> element, id='fadein' and a div, named 'network' which comes with a display:none attribute.
My idea was to call the fadeIn function when pressing the <a> element, so my function is
- <script>
- jQuery.noConflict();
- jQuery('#fadein').click(function() {
- $('#network').fadeIn('slow', function() {
- // Animation complete
- });
- });
- </script>
and it doesn't work... why does it happens?
It looks quite simple...
Thank you