Last active
October 16, 2022 16:55
-
-
Save ramazansancar/c89badf6d31a2fdaa35cd4a596d49ae9 to your computer and use it in GitHub Desktop.
Gri.com.tr 'de tüm uzantıları seçme kodu - https://www.gri.net/domain-kayit.php - Google Chrome Inspect(Öğeyi Denetle/İncele) 'de Console 'a yazmanız yeterli. Network 'den kontrol edebilirsiniz. Bizim yaptığımız test sonucunda ~3-3,5dk sürdü. 509 Byte gelen veriler boş olanlar. Yüksek olanlar ise dolu veriler anlamına geliyor. Status=(Pending) o…
This file contains 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
$(".multi-tld-list > li > input").each(function () { | |
$("input").each(function () { | |
return this.checked = true | |
}); | |
}); |
This file contains 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
$(".tlds > .checkbox-inline").each(function () { | |
$("input").each(function () { | |
return this.checked = true | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment