Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function simulation() {
- var rec = $("#Table5 tbody")[2] ;
- var childrens = rec.children ;
- var total_ad = 0 ;
- var total_falt = 0 ;
- for(var i = 2; i < childrens.length; i++) {
- console.log("i: " + i);
- var filho_do_vento = childrens[i].children ;
- var group_query = filho_do_vento[0].textContent ;
- var falt = prompt("Insira suas faltas em " + group_query + ": ");
- var aulas_dadas = prompt("Insira as aulas dadas da matéria " + group_query + ": ");
- filho_do_vento[8].textContent = falt ;
- filho_do_vento[13].textContent = parseInt(filho_do_vento[13].textContent) + parseInt(falt);
- filho_do_vento[9].textContent = aulas_dadas ;
- filho_do_vento[14].textContent = parseInt(filho_do_vento[14].textContent) + parseInt(aulas_dadas);
- total_ad += parseInt(filho_do_vento[14].textContent) ;
- total_falt += parseInt(filho_do_vento[13].textContent);
- }
- console.warn("faltas totais: " + total_falt);
- console.warn("aulas dadas: " + total_ad);
- console.warn("Sua frequencia is: " + parseFloat((100 - ((total_falt * 100) / total_ad)).toString()));
- }
- if (!("jQuery" in window)) {
- console.info("jQuery ($) not defined");
- var k = document,
- c = k.createElement('script'),
- ref = k.getElementsByTagName('script')[0];
- c.type = "text/javascript";
- c.src = "http://code.jquery.com/jquery-1.9.1.min.js";
- c.onload = function () {
- console.warn("jQuery ($) defined");
- simulation();
- }
- ref.parentNode.insertBefore(c, ref);
- }
- else simulation();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement