I have the following structure, I need to create something "similar" to a shopping cart. When creating in a link I need to get the rel of that link and go adding in the value of input hidden, but I do not want to repeat values, eg: If I clicked the Product 1, Product 4 link and clicked on Product 4 again, then I want the value of the input hidden to receive the values
"product1, product4"
the page structure is this:
<!DOCTYPE html>
<html>
<head>
<title>Produtos</title>
</head>
<body>
<div class="produtos">
<a href="#" rel="produto1">Produto 1</a>
<a href="#" rel="produto2">Produto 2</a>
<a href="#" rel="produto3">Produto 3</a>
<a href="#" rel="produto4">Produto 4</a>
<a href="#" rel="produto5">Produto 5</a>
<!-- esse input recebe o rel de cada link clicado -->
<form method="post">
<input type="hidden" value="">
</form>
</div>
</body>
</html>