Page 1 of 1

jquery rending issue in ie6...very wierd

Posted: Thu Sep 24, 2009 11:43 pm
by invisibled
Hey Everybody, here is my problem.

if you visit http://fnaa.info in any browser but ie6 you will see the list of stories come up on the left hand side. then fade in and out when you switch pages. Initally they load and fade in using this.

Code: Select all

 
$(document).ready(function(){
                    
                    var element = window.location.search;
                    var search = element.substring(1,8);
                    var keywords = element.substring(8,999)
                    
                    var article = element.substring(1,9);
                    var article_link = element.substring(9,999);
                    
                    if(search == "search=" ){
                        var full_search = '&'+search+keywords;
                    } else {
                        var full_search = '';
                    }
                    
                    if(article == "article=" ){
                        var article_link = '&'+article+article_link;
                    } else {
                        var article_link = '';
                    }
                    
                    $(".left .stories").load("lib/inc/stories.php?page=1"+full_search+article_link+params, function(){
                        $.getScript("lib/js/stories.js", function(){
                            $('.left .stories').animate({opacity:1}, 300);
                        });
                    });
                });
 
but if you look at the page in ie6.... it shows up as a question mark and a weird white box thing. Does anybody else see this error? If everything loads up fine, could you tell me what version of ie6 your using? if you do see the error, do you have ANY idea why its happening?

ps i'm using v6.0. Thanks in advance :D

Re: jquery rending issue in ie6...very wierd

Posted: Tue Sep 29, 2009 6:08 pm
by invisibled
bumping :)