Skip to content
Advertisement

Tag: browser

Does internet speed afect browser JavaScript?

I wanted to know if browser speed affects the execution time of JavaScript code. For example, if I have this code Does it mean that someone with a 4G connection will get this code executed earlier than someone with a 2G connection Answer No, as I understand it, Java Script is run in your browser and your browser have engine

Are there any browser-native 360 spin viewers?

There are several plugins for viewing interactive 360-spin images of products, such as this: https://www.ajax-zoom.com/index.php?cid=home&tag=spin360 However, my question is whether there are any current or proposed solutions for this that are browser-native, so don’t require any plugins? One analogy would be how gifs are now natively supported by most browsers without the need for a plugin. Many thanks! Answer First,

How is Outlook Online downloading attachments?

I’m trying to understand how the “Download All” button works in Office365 Outlook Online when downloading multiple attachments from an email. The button is a “button” type. It does not appear to be part of a form. It has some “click” event listeners (apparently using React), but I’m not able to understand if those are somehow resulting in the download

How to detect prefers-color-scheme change in javascript?

I can use window.matchMedia to detect whether user is in dark mode, but how to listen dark mode change event? Is there any API like: Answer You can add an event-listener with callback on the MediaQueryList returned by Window.matchMedia(): Note: There are two method versions to register an event-listener: the recommended addEventListener(“change”, listener)) which allows more fine-grained assignment to event-types

what is the purpose of chrome-extension inject.js

Hello I have a react project which is working full and functional but when I look into network form console I find an unexpected script called chrome-extension://gppongmhjkpfnbhagpmjfkannfbllamg/js/inject.js which is not associated with my project. Is that a virus or an extension ?? In my chrome://extensions/ there is nothing called inject. Can anyone tell me what is this? This script loading

Browser is cancelling multiple file download requests

I am trying to download multiple files that the user has selected for download. However, the browser is cancelling all but last download request. If I am increasing the delay between the requests to say about 1 second, then those files get downloaded, but even in this case, sometimes some files are missed. The files are being downloaded from amazon

Advertisement