I'm using a simple script to load remote content. So simple like this:

       jQuery.noConflict();
       jQuery(document).ready(function(){
           var showagain = function(){
               jQuery("#linkProfessional").animate({opacity: 1.0},
1000).show('slow');
               }

           jQuery("#linkProfessional").click(function(){
               jQuery("#divProfessional").load("CreateGrid.cfm
?type=professional&IDAccount=034014450&IDPEB=063871");
               jQuery("#linkProfessional").animate({opacity: 1.0},
1000).hide('slow');
               var interval = setInterval(showagain,10000)
           });

       });


User clicks in a link and your remote content is loaded showing the link
only after 10 seconds. But... this script works like a charm(zero errors) in
Firefox 2.0.0.1 but without success with IE 6. What's wrong?

Cheers
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to