Skip to content

Instantly share code, notes, and snippets.

View phloreenm's full-sized avatar
🎯
Focusing

Florin M. phloreenm

🎯
Focusing
View GitHub Profile
@phloreenm
phloreenm / main.js
Created March 9, 2024 13:18
taxi-webapp
document.onreadystatechange = function () {
let state = document.readyState;
if (state == 'complete') {
document.getElementById('interactive');
document.getElementById('load').style.visibility="hidden";
}
};
$(document).ready(function(){
"use strict";