37 lines
865 B
Plaintext
37 lines
865 B
Plaintext
<!--suppress HtmlUnknownAnchorTarget -->
|
|
<div class="row center-align">
|
|
<h2>Koju nekretninu tražite?</h2>
|
|
</div>
|
|
|
|
<form method="POST" id="form-real-estate-type">
|
|
<div class="row center-align">
|
|
<ul class="collection with-header">
|
|
<% for(const realEstatetype of realEstateTypes) { %>
|
|
<li class="collection-item" >
|
|
<div id="<%= realEstatetype.id %>" ><%= realEstatetype.title %>
|
|
<a href="#!" class="secondary-content">
|
|
<i class="material-icons">send</i>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
<input type="hidden" name="realestatetype" id="realestatetype" />
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
$(document).ready( () => {
|
|
$(".collection-item").click( (e) => {
|
|
const clickedId = $(e.target).attr("id");
|
|
$("#realestatetype").val(clickedId);
|
|
$("#form-real-estate-type").submit();
|
|
});
|
|
});
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|