Files
old-web/app/views/realEstateType.ejs

37 lines
863 B
Plaintext
Raw Normal View History

2019-05-16 19:40:26 +02:00
<!--suppress HtmlUnknownAnchorTarget -->
2019-05-15 15:27:10 +02:00
<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">
2019-05-16 19:40:26 +02:00
<% for(const realEstatetype of realEstateTypes) { %>
<li class="collection-item" >
2019-05-15 15:27:10 +02:00
<div id="<%= realEstatetype.id %>" ><%= realEstatetype.ime %>
<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) => {
2019-05-16 19:40:26 +02:00
const clickedId = $(e.target).attr("id");
2019-05-15 15:27:10 +02:00
$("#realestatetype").val(clickedId);
2019-05-16 19:40:26 +02:00
$("#form-real-estate-type").submit();
2019-05-15 15:27:10 +02:00
});
});
</script>