I have tried everything I can think of to track down this issue but can't turn up anything. I'm using the jquery address plugin for my site.

After I login to my site the user gets redirected to the home page at which time I initialize the jquery address plugin. This works great on FF, IE, and Chrome, but Safari starts to load the page and then goes blank for some unknown reason.

The last block of code it hits is this:

$('a').address();

$.address.init(function(e) {
    // Address details can be found in the event object
});

// Handle handle change events
$.address.change(function(e) {

    var urlAux = e.value.split('=');
    var page   = urlAux[0];
    var arg  = urlAux[1];


    if (page == "/foo") {
        /* load foo */
    }
    else if (page == "/bar") {
        /* load bar */
    }
    else if (page == "/") {
        /* my index page loaded here */

        $.address.title("Home Page");

        $("#loadImage").show();
        $('#main').load("home.php", function (e) {
            e.preventDefault();
            $("#loadImage").hide();        
        });
    }
});

This get called outside of document ready. Any idea what might cause this issue in Safari?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Here's what I would check:

  • Check for js errors or warnings
  • Check for any failed net requests
  • Confirm that page and arg are both defined
  • Make sure all caching is disabled
  • Change the contents of home.php temporarily to make sure it's not something weird happening inside that request.
  • Check that it's working, but just being hidden (you are calling .hide() on an element...)

Remember: the Developer Tools are your friend (Command+Alt+i) Good Luck!

link|improve this answer
I did some of the things you suggested and found the issue! It was a call to a google maps js file that was causing the issue. The file was not needed so I removed it and everything works great. Thanks! – Paul Oct 2 '11 at 15:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.