Skip to content Skip to sidebar Skip to footer

Deep-linking With Sammy.js?

I recently built a website using the sammy.js framework. The site includes a portfolio page with a grid of thumbnails that link to the detail page for each portfolio piece. All of

Solution 1:

So, this doesn't work?

get('#/work-detail/:project', function() {
        alert(this.params['project']);
});

Post a Comment for "Deep-linking With Sammy.js?"