So heres the deal, I am creating a portfolio type thing. On the main page I have three links, each all goto the same page. That page is basically a collection of all the projects I want to display, but in the top menu I have buttons to filter projects. Now back to the front page, i want each of the links on the front page to goto the collection, automatically filtering the content without having to press a button after page load.
front page: x
collection page: x
Im simply using data-filter="" to achieve the content filter.
i.e. the button i click if i want to filter only content that would be photography related
So what I am trying to achieve for example is clicking the first link on the front page and it going to the collection page with photography related content already filtered.
Any suggestions? And please try to understand my situation before responding, thank you :).
front page: x
collection page: x
Im simply using data-filter="" to achieve the content filter.
i.e. the button i click if i want to filter only content that would be photography related
Code:
<li><a href="" data-filter=".photography">Photography</a></li>
So what I am trying to achieve for example is clicking the first link on the front page and it going to the collection page with photography related content already filtered.
Any suggestions? And please try to understand my situation before responding, thank you :).