function gen_reporting_el(){ $("#player_parent #oframeplayer_parent").append("
"); $(".reporting_window").append($("#reporting_content").html()); } function showReportWindow(){ if ($(".reporting_window").is(":visible")) { $(".reporting_window").hide(); }else{ $(".reporting_window").show(); } } $(document).ready(function(){ $(".reporting_window #sentReport").click(function(){ var postdata = { hash: $(this).data("hash"), problem: $('.reporting_window input[name="problem"]:checked').val() , math: $(".reporting_window #math").val() , solution: $(".reporting_window #solution").val() } $.post("/reporting.php", postdata ,function(data){ }).always(function(data) { if(data == "1"){ $(".reporting_window .content").html(`Report already sent!