Thứ Hai, 20 tháng 3, 2023

Phần mềm sửa lỗi ảnh chụp từ điện thoại

 https://drive.google.com/file/d/1mtff5lCOFeOz09-FC2SPPoNXxI3lb0Ol/view?usp=sharing

Chủ Nhật, 15 tháng 1, 2023

[JavaScript] How to run a function when the page is loaded?

     Method 1:
 <body onload="functionToBeExecuted">

Method 2:

$(document).ready ( function(){ alert('ok'); });​

Method 3:

window.onload = function exampleFunction() {
  
    // Function to be executed
}