min-history

0.1.4 • Public • Published

min-history : html5 history shim for IE8+, FF3+, Chrome, Safari, ...

<!DOCTYPE html>
<html>
 
<head>
    <!--[if IE 8]><script src="../node_modules/ie8/build/ie8.js"></script><![endif]-->
    <script type="text/javascript" src="../lib/min-history.js"></script> 
</head>
 
<body>
    <a class="ajax" title="my link title" href="/mylink">My Link</a>
    <a class="ajax" title="otherlink title" href="/otherlink">Other Link</a>
    <a class="ajax" href="/otherlink#foo">third Link</a>
    <a class="ajax" href="/third/link">third Link</a>
    <a class="ajax" href="/third/link#doe">third Link doe</a>
    <a class="ajax" href="/bar">bar</a>
    <a class="ajax" href="/bar#zoo">bar zoo</a>
    <a class="ajax" href="/bar?bloupi#zoo">bar bloupi zoo</a>
    <script type="text/javascript">
    (function() {
 
        if (history.emulated)
            console.log('Emulated Html5 History API');
        else
            console.log('Native Html5 History API');
 
        history.init({
            hashChangeAlone: true,
            setStateEvent:true,
            basePath: "/example",
            hid:true
        });
 
        var count = 0;
        var links = document.querySelectorAll('a.ajax');
        for (var i = 0; i < links.length; i++)
        {
            links[i].onclick = function(e) {
                console.log("CLICK");
                if(&& typeof e.preventDefault !== 'undefined')
                    e.preventDefault();
                history.pushState({
                        hello: "world " + (++count)
                    }, 
                    this.title || ("hello world : " + count),
                    this.href);
                return false;
            };
        }
        // popstate event from back/forward in browser
        window.addEventListener('popstate', function(e) {
            console.log("* POP STATE : " + history.location.relative, " - ", JSON.stringify(history.state));
        });
 
        // hashchange event from back/forward in browser
        window.addEventListener('hashchange', function(e) {
            console.log("* HASH CHANGE " + history.location.hash, " - ", JSON.stringify(history.state));
        });
 
        // setstate event when pushstate or replace state
        window.addEventListener('setstate', function(e) {
            console.log("* SET STATE " + history.location.relative, " - ", JSON.stringify(history.state));
        });
 
    })();
    </script> 
</body>
 
</html>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.4
    14
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.4
    14
  • 0.1.3
    0
  • 0.1.2
    0
  • 0.1.1
    0

Package Sidebar

Install

npm i min-history

Weekly Downloads

14

Version

0.1.4

License

MIT

Last publish

Collaborators

  • nomocas