jquery rending issue in ie6...very wierd

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
invisibled
Forum Contributor
Posts: 112
Joined: Sun Apr 29, 2007 3:35 pm
Location: New Westminster

jquery rending issue in ie6...very wierd

Post 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
invisibled
Forum Contributor
Posts: 112
Joined: Sun Apr 29, 2007 3:35 pm
Location: New Westminster

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

Post by invisibled »

bumping :)
Post Reply