$(document).ready(function(){$("#jsHint").hide();$(".antwortText").hide();$("#progressbar").hide();$("#ads").hide();$(".antwortText").corner("4px");var a=$("#quizID").attr("value");$("#auswertung").click(function(){var c=0;var b=0;scroll(0,0);$(".antwortText").css("color","#fff");var d=new Array();$("input[@type=radio]:checked").each(function(e){d.push(this.value)});$.getJSON("../inc/auswertung.php",{quizID:a},function(g){for(var f=0;f<g.length;f++){var h="";if(d[f]==g[f].antwortID){h="Richtig! "+g[f].antwortText;c=c+1}else{h="Falsch! "+g[f].antwortText;b+=1}$(".antwortText:eq("+f+")").html(h);$(".antwortText:eq("+f+")").corner("4px");$(".antwortText:eq("+f+")").show("200")}$("#result").css("margin-top","20px");var e='<p><span style="color:#009900;font-weight:bold;">Richtige Antworten: '+c+"</span></p>";e+='<p><span style="color:#CC0000;font-weight:bold;">Falsche Antworten: '+b+"</span></p>";$("#result").html(e);$("#ads").show()})});$("#SendButton").click(function(c){$("#progressbar").show();var b=$("#commentForm").serialize();$.ajax({type:"POST",url:"../inc/comment-post.php",data:b,success:function(d){$("#formContent").html(d)}})});$("#commentForm").bind("keyup",function(){if($("#autor").val()!=""&&$("#autorEmail").val()!=""&&$("#comment").val()!=""){$("#SendButton").attr("disabled","")}else{$("#SendButton").attr("disabled","disabled")}})});