Skip to content

Instantly share code, notes, and snippets.

@mkusher
Last active August 29, 2015 14:05
Show Gist options
  • Save mkusher/0886c8ea9a0f862c5bef to your computer and use it in GitHub Desktop.
Save mkusher/0886c8ea9a0f862c5bef to your computer and use it in GitHub Desktop.
$('.answer-button').click(function(){ // вешаем событие на все кнопки .answer-button
var answer = $(this).data('value'); // теперь у нас в data-value значение, которое в кнопке висит
$('#answer_math').mathquill('write', answer); //заполним поле с ответом
submitAnswer(); // тогда все просто
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment