Files
edx-platform/lms/static/js/help.js
2013-01-17 10:47:50 -05:00

11 lines
241 B
JavaScript

$(document).ready(function() {
var open_question = "";
var question_id;
$('.response').click(function(){
$(this).toggleClass('opened');
answer = $(this).find(".answer");
answer.slideToggle('fast');
});
});