//Javascript
Tối ưu tốc độ website với Asynchronous và Deferred Javascript
Hầu hết, nếu không nói là tất cả website ngày nay đều sử dụng quá nhiều Javascript. Các nút social media? Các Plugin? Thậm chí là theme? 90% trường hợp đều có chèn script. Bạn đang chạy script. Script làm chậm tốc độ tải trang. Sau đây là 2 plugin giúp giải quyết vấn đề…
Xem thêm- 97 lượt xem
- 0 Bình luận
How to print a number with commas as thousands separators in JavaScript
function numberWithCommas(x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, “,”); } This is all you really need to know. The regex uses 2 lookahead assertions: a positive one to look for any point in the string that has a multiple of 3 digits in a row after it, and a negative assertion to make sure that point only has..
Xem thêm- 41 lượt xem
- 0 Bình luận
What is Ajax
What is AJAX? AJAX = Asynchronous JavaScript and XML. In short; AJAX is about loading data in the background and display it on the webpage, without reloading the whole page. Examples of applications using AJAX: Gmail, Google Maps, Youtube, and Facebook tabs. You can learn more about AJAX in our AJAX tutorial. What About jQuery and..
Xem thêm- 46 lượt xem
- 0 Bình luận