Akshat Verma
Akshat Verma
window.addEventListener('scroll', function(event) { event.preventDefault(); window.scrollTo(0, 0); }); // Disable CSS animations that affect scrolling document.querySelectorAll('*').forEach(function(element) { const animations = getComputedStyle(element).animationName; if (animations.includes('scroll')) { element.style.animationName = 'none'; } }); //try this...
My freind is also having this mistake so he tried some code that might solve your problem here is the solve it : const ethers = require("ethers"); const fs =...
Hopefully it might work..
https://fonts.google.com/icons?icon.query=+solids&selected=Material+Symbols+Outlined:total_dissolved_solids:FILL@0;wght@400;GRAD@0;opsz@48 Not exactly solid but ..
https://fonts.google.com/icons?icon.query=bloc&selected=Material+Symbols+Outlined:block:FILL@0;wght@400;GRAD@0;opsz@48 block symbol
Here are some Icons that U need ..Hope fully u like it
https://github.com/KandulaDinesh/Lanaguge_Translation Try this u will get solution to the problem. Hopefully..
window.addEventListener('beforeunload', function() { sessionStorage.setItem('scrollPosition', window.scrollY); }); // Restore scroll position on page load window.addEventListener('load', function() { var scrollPosition = sessionStorage.getItem('scrollPosition'); if (scrollPosition !== null) { setTimeout(function() { window.scrollTo(0, scrollPosition); sessionStorage.removeItem('scrollPosition');...
tried something hope this could worl