The this.wrapper.(find(...))
part has a problem. Just grab the id directly from the <option>
like this:
var option = $('<div class="option" id="' + this.answers[i].getAttribute('id') + '">' + answers[i].text + "</div>")
One more thing, in your form, you have id"whatsapp"
which should be id="whatsapp"
.