durfdoen-2.0/layouts/partials/question.erb

19 lines
595 B
Text
Raw Normal View History

2020-02-27 22:45:50 +01:00
<h1> <%= question[:vraag] %> </h1>
<select id="<%= question[:vraag] %>">
<% for a in question[:antwoord] %>
<option value="<%= a[:tekst] %>"><%= a[:tekst] %></option>
<% if a.key?("vraag") %>
<div id=<%= a[:vraag]%>>
<%= render '/partials/question.*', question: a %>
2020-02-27 21:48:17 +01:00
</div>
2020-02-27 22:45:50 +01:00
<% end %>
2020-02-27 21:48:17 +01:00
<% end %>
</select>
2020-02-27 22:45:50 +01:00
2020-02-27 21:48:17 +01:00
<script>
2020-02-27 22:45:50 +01:00
document.getElementById(<%= item[:vraag]%>).addEventListener('change', (event) => {
2020-02-27 21:48:17 +01:00
var tekst = event.target.value;
document.getElementById(<%= item[:vraag]%>)
<%= render '/partials/question.*' %>
})
2020-02-27 22:45:50 +01:00
</script>