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
contentTypeoption. 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