I have one doubt can i have an anchor tag in demo1.html page if i click that link it has to got to demo2.html page. In demo2.html page i am using a data filter and it has to select that filter can we do like that. Here is the sample code i amm using
Demo1.html
<a href="careers.html">Bangalore </a> | <a href="#"> Mumbai </a>
Demo2.html
<ul>
<li class="filter"><a class="selected" href="#0" data-type="all">All</a></li>
<li class="filter" data-filter=".bangalore"><a href="#0" data-type="bangalore">Bangalore</a></li>
<li class="filter" data-filter=".mumbai"><a href="#0" data-type="mumbai">Mumbai</a></li>
</ul>
<ul>
<li class="mix bangalore"></li>
<li class="mix mumbai"></li>
</ul>
I am using this filter plugin. kindly help me out with this