Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a History API script built with javascript and a little jQuery. Only problem is that I needed to fire an AJAX request to get the stream when the user navigates home so i did a simple if clause to see if the user is navigating home. Strange bug that I can't solve is that the stream doesn't always show up, however it does always get requested as I can see that in firebug. Sometimes it will quickly flash up and disappear again other times it just won't be there. I can't see any pattern whatsoever in its appearances and not-appearances.

Here's my if clause and the bit before it;

var navigationPath = $(this).attr("href");
loadContent(navigationPath);
updateLocation(navigationPath);
if (navigationPath =='Home'){

     $.get("phpscripts/getFeed.php",function(result){
     $("#newsFeed").html(result);
     }); 
        }
});

Here's the whole thing, it's pretty long:

$("#main").prepend($("<mark/>").html("Page load event fired"));

$(document).on("click", "a", function (event) {
/// <summary>
///     Assign click event for all available hyperlinks for load content via Ajax 
/// </summary>
event.preventDefault();
var navigationPath = $(this).attr("href");
loadContent(navigationPath);
updateLocation(navigationPath);
if (navigationPath =='Home'){

     $.get("phpscripts/getFeed.php",function(result){
     $("#newsFeed").html(result);
     }); 
        }
});
onLocationChanged();

function loadContent(url) {
/// <summary>
///     Load content from given location via Ajax request.
/// </summary>
/// <param name="url" type="String">Location of the new content</param>
$.ajax({
    url: url,
    type: 'GET',

    dataType: "html",
    success: function (responseData) {
        $("#main").html($("#load", responseData).html());

    },
    error: function (jqXHR, textStatus, errorThrown) {
        alert(jqXHR.status + " : " + errorThrown);
    }
 });
}

function updateLocation(relatedPath) {
/// <summary>
///     Update the URL for new content without reloading the page
/// </summary>
/// <param name="relatedPath" type="String">Path foe updating location</param>
if ("pushState" in history) {
    // use window.history.pushState if it support by the browser
    var currentPath = relatedPath ? { navigationPath: relatedPath} : "";
    window.history.pushState(currentPath, document.title, "/" + relatedPath);
} else {
    // use hash as fallback option
    window.location.hash = relatedPath;
}
}

function onLocationChanged() {
/// <summary>
///     Register event handler for location change. 
///     This is used to load content when browser back button pressed
/// </summary>
if ("pushState" in history) {
    $(window).on("popstate", function (e) {
        var state = e.originalEvent.state;
        if (state && state.navigationPath) {
            var contentPath = state.navigationPath;
            loadContent(contentPath);
        }
    });
}
else {
    $(window).on('hashchange', function () {
        $href = $(window.location).attr("hash");
        loadContent($href.replace("#", ""));
    });
}

}

Here's a jsfiddle but it doesn't help much as I've had to change the get request to just an alert. The alert works fine

share|improve this question
doubt this fixes it but making a common mistake using contentType option. It is for data sent to server, not received from. Better to remove it. See API : api.jquery.com/jQuery.ajax – charlietfl Oct 21 '12 at 19:56
@charlietfl Hasn't fixed it but thanks anyway. Its gone will edit post – nbs189 Oct 21 '12 at 20:21
really hard to troubleshoot without seeing it in a console and adding some console.log() items. A live link would help – charlietfl Oct 21 '12 at 20:45
@charlietfl I realise that but I don't have a live link as its all on localhost. I will put a jsfiddle up but doubt it will help much – nbs189 Oct 21 '12 at 20:50
@charlietfl Ive added a jsfiddle, please refer to question. It doesn't ehlp too much i dont think. – nbs189 Oct 21 '12 at 20:53
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.