Good afternoon person, alright?
In my project, I have a list of properties, all different from each other. When clicking on any of them, you should open a detail page with unique information about the property clicked. The problem is communicating my results page with the detail page.
I had to make the communication through an id ... See 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 the anchor and move the id
to the detail page via jQuery! Is it possible?
Thank you, good week to everyone!