/** * WP-Quizzes * wp-quizzes.js * * By: Troy Whiteley , * * Handles submit requests for the quizzes. */ jQuery.noConflict(); var wpquizzes_DataSent = false; function wpquizzes_submitQuiz(quiz_id) { var postVars = ''; jQuery('.wpquizzes-question-box input:radio:checked').each(function(i){ postVars = postVars + ';' + jQuery(this).attr('value'); }); //get rid of the first semi-colon postVars = postVars.substr(1); if(postVars.length>0 && wpquizzes_DataSent===false) { wpquizzes_DataSent = true; jQuery.post('http://www.themorrisbrothers.com/content/wp-content/plugins/wp-quizzes/ajax.php', {'quiz_id': quiz_id,'post_vars':postVars,'req':'checkAnswer'}, function(data){ jQuery('.wpquizzes-quiz-box-'+quiz_id).html(data); }); } }