I\'ve tried many things and there\'s no way, always appears this error I tried to use only one option to see if passed, changed the call of jquery, but not.
I looked
You have unnecessary ; (semicolons):
;
Example here:
}else{ $('#resposta').addClass('warning-box').html('É necessário no mínimo duas opções'); };
The trailing ; after } is incorrect.
}
Another example here:
}else{ $('#resposta').addClass('warning-box').html('Coloque a pergunta da enquete'); };