"How to Change the URL in AJAX Applications" by CMSN Software Tutorials,
shows you how to change the browser URL without refreshing the page. In this tutorial
we
are using HTML5 history
API. Since HTML5 is not supported by all browsers,
we are using location.hash
as fallback option. For more information
about How to use hash values, you can read
our
previous tutorial (How
to create SEO friendly AJAX applications). Since this is not going to change
our
non Ajax based application structure, this will support SEO as well.
In the previous tutorial of CMSN Software Tutorials "How to create SEO friendly AJAX applications", we explained how to support SEO for Ajax applications.
$("#ResultContainer").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); }); 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', contentType: "text/html; charset=utf-8", dataType: "html", success: function (responseData) { $("#ResultContainer").html($("#ResultContainer", 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("#", "")); }); } }
First line of the above file will indicate when full page reload is fired. It is
not required for the actual application. Next step is binding a click event for
matching hyperlinks.That event prevents the default navigation and load that content
via Ajax request. It will convert
our
non Ajax application to Ajax based application.
We
can change the url for above loaded content by using history.pushState
.
But since it is not supported by all browsers,
we
have to use location.hash
as a fallback option. Then
we
can use onpopstate
event for the back button functionality and onhashchange
can be use as fallback option
8 comments:
and I will be waiting for your next write ups thank you once again.
My website - PrestaShop Modules
my web site - Google seo
I will bookmark your blog and check once more right here regularly.
I'm fairly certain I'll learn many new stuff right right
here! Good luck for the next!
Here is my site: web file explorer
Post a Comment