1
0
дзеркало https://github.com/coolaj86/ajquery.js.git synced 2024-11-16 17:29:02 +00:00

doc: .textContent for modernized usage example

This commit is contained in:
AJ ONeal 2024-08-29 17:36:58 -06:00
джерело 8084f8ff30
коміт 607f69e402
Не вдалося знайти GPG ключ що відповідає даному підпису
Ідентифікатор GPG ключа: F1D692A76F70CF98

@ -6,6 +6,6 @@
<script src="./ajquery.js"></script> <script src="./ajquery.js"></script>
<script> <script>
document.write("Hello, World!"); document.write("Hello, World!");
console.log($("body").innerText); console.log($("body").textContent));
</script> </script>
</body> </body>