Created
January 13, 2016 12:11
-
-
Save THR/9a1f446f74f24eccc7fe to your computer and use it in GitHub Desktop.
E okul Sürekli devamsız davranış notu silme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var script = document.createElement('script');script.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";document.getElementsByTagName('head')[0].appendChild(script); | |
$('.frmInput input[type=checkbox]:checked').each(function(){ | |
var elem = $($(this).parent().parent().parent().parent().parent().parent().parent().find('td').first()); | |
var no = elem[0].innerText; | |
if(no>1000) $(this).prop('checked',false); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment