1
Good afternoon, all right?
In my project, I have a list of properties, all different from each other. When clicking on any of them, one should open a page of details with unique information regarding the property clicked. The problem is communicating my results page with the details page.
I had in mind to make communication through an id... Look at my example:
<!-- RESULTADO.html -->
<ul id="resultado-pesquisa">
<li class="itens-pesquisa"><a id="0101" >Clicar para detalhes</a></li>
<li class="itens-pesquisa"><a id="0202" >Clicar para detalhes</a></li>
<li class="itens-pesquisa"><a id="0303" >Clicar para detalhes</a></li>
</ul>
What I need is: Click on the anchor and go to id
to the details page via jQuery! It is possible?
Thank you, good week everyone!