# UPDATE THE CURRENT URL IN BROWSER::
<script> ChangeUrl = function(page, url) { if (typeof (history.pushState) != "undefined") { var obj = { Page: page, Url: url }; history.pushState(obj, obj.Page, obj.Url); $('.breadcrumb-get-a-pro').attr('href', url); } else { alert("Browser does not support HTML5."); } } </script>