Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('.score').on('keyup',function() {
- var skor = $(this).val();
- if (isNaN(skor)) { skor=0 }
- if (skor > 5) {
- alert("Skor Maksimal 5.");
- }
- var bobot = $(this).parents('tr').find('.bobot').val();
- if (isNaN(bobot)) { bobot=0 }
- var total = (bobot*parseInt(skor));
- $(this).parents('tr').find('.total').val(total);
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement