Is it possible to have an anchor tag in demo1.html that directs to demo2.html when clicked? In demo2.html, I am using a data filter which needs to select that filter. Can this be achieved?
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 implementing the filter plugin for this functionality. Any assistance would be appreciated.