Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

class Editor { docContainer text constructor(posContainer) { this.posContainer = posContainer this.genComponets() this.listen() } genComponets() { ...
kakakali's user avatar
  • 305
2 votes
1 answer
46 views

I have this js, but it works only with browser refresh. let vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0) if(vw < 801){ as = document.getElementById('as'); ...
wmarx's user avatar
  • 47
1 vote
3 answers
255 views

I am using NoDriver python on MacOS and sometimes when I try and open a browser tab it fails with the error below (I've tried Chrome+Chromium and it happens on both). If I manually open the browser ...
Ahmed Zaidan's user avatar
0 votes
1 answer
123 views

There are two elements: a button and a tooltip. The button is in the element with position: sticky, and the tooltip is separate and has position: absolute (all these conditions cannot be changed). ...
Alexandroppolus's user avatar
0 votes
1 answer
169 views

I am developing an Avalonia application and I decided to try the multi-platform. The project I started is using .NET 8.0, infact I installed the .NET 8.0.121 SDK. When I start the application on the ...
DigioMatthy's user avatar
1 vote
0 answers
71 views

I have a web app that requires access to the microphone. On iPhone browsers (both Chrome and Safari), users have to grant microphone permission on every page reload. This results in poor user ...
Chiawen's user avatar
  • 12k
0 votes
0 answers
46 views

I have created a website in Node Js, and it supports range requests and gives the proper ranged responses. However, anything loaded with the <video> tag does not work, this is the code for the ...
Jerek Visocnik's user avatar
0 votes
1 answer
44 views

Note: My problem seems to be more to do with synchronous vs asynchronous JavaScript than with PouchDB. I have a PouchDB database containing documents that each have one attachment. The attachments are ...
AlanQ's user avatar
  • 135
1 vote
2 answers
130 views

How can I get JavaScript to read the maximum possible width of the viewport of any browser on any device when the browser window width is fully expanded on the device? I have tried: const ...
sjl26916091's user avatar
-3 votes
1 answer
137 views

I would like to read and write to a large file (stored on the user's file system) using browser Javascript without loading the whole file into RAM (it's too big to fit in RAM). I already have the code ...
Vexcess's user avatar
  • 96
1 vote
1 answer
127 views

In Google search results, I noticed that some sites show a full-sized favicon (A), while mine shows a smaller one (B) with padding or shrink. Here’s what I mean: A (Other site – full favicon): B (My ...
pvp11's user avatar
  • 890
0 votes
1 answer
141 views

The Wikipedia page for UTF-16 claims that it is obsolete, saying: UTF-16 is the only encoding (still) allowed on the web that is incompatible with 8-bit ASCII. However it has never gained popularity ...
Isaac King's user avatar
0 votes
0 answers
51 views

I'm implementing a Chrome extension using chrome.omnibox.onInputChanged.addListener with debounce and abort control. When the async operation (getKeywordSuggestions()) takes too long (5-10 seconds) ...
user26406990's user avatar
0 votes
1 answer
78 views

How to call an API on before unload event in react, I have tried fetch with Keepalive true & sendbecon(doesn't support authorization headers in headers) Also, I want to show dialog box with custom ...
user9150771's user avatar
0 votes
2 answers
81 views

Setup I have the following HTML and CSS (the most important thing to notice here is the style for #selected-tab): <body> <header> <nav> <span id="selected-tab&...
Sujal Singh's user avatar
0 votes
0 answers
31 views

I've a web application using WebRTC capabilities to handle phone calls. My customers would like be able to pickup calls using headset button like they use to do with a desktop application. I didn't ...
Pichou Bichou's user avatar
0 votes
0 answers
45 views

I'm trying to override default browser behavior for the following key combinations using the hotkeys.js library: CTRL+S (save) CTRL+N (new window) CTRL+T (new tab) CTRL+U (view source) I want to use ...
Raju Paladiya's user avatar
-2 votes
1 answer
667 views

I'm trying to automate loading web pages. I have tried to use cURL for this task. Forget about it! Those days are long gone. You will only get a "Just a moment..." dummy page returned. ...
user291937's user avatar
0 votes
0 answers
36 views

When working with React.js - does the browser behave differently in the pixel rendering pipeline when we update CSS declaratively -like through state in event handlers: <div className={isDark ? '...
Tom Spatula's user avatar
0 votes
0 answers
29 views

Unfortunately, Safari does not support 'webNavigation.onHistoryStateUpdated', but i need it to be working in web extension. I had an idea of wrapping history.pushState() that will call ...
4ntoine's user avatar
  • 20.6k
-2 votes
2 answers
87 views

i installed java jdk on my RHEL 8 system. But I cannot see it in my browser. When I test browser for java it says Java is not installed. # dnf install java-1.8.0-openjdk.x86_64 # java -version ...
Rajeev's user avatar
  • 1,489
0 votes
0 answers
31 views

I was building a portfolio website and committed everything to a repository named "Portfolio." I then hosted the page, which became something like: https://myaccount.github.io/Portfolio ...
GittBitt's user avatar
1 vote
0 answers
103 views

i had a working implementation of the google drive api. Now stopped working and I get following error logged in the browser's console: GET https://content.googleapis.com/discovery/v1/apis/drive/v3/...
Salvatore Callari's user avatar
0 votes
0 answers
21 views

So I am reverse engineering this site, and I need to understand where some values come from in this encryption process, lets say the encryption function is window.crypto.decryption() and all I really ...
Aaron's user avatar
  • 1
0 votes
0 answers
42 views

public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http .csrf(csrf -> csrf.disable()) .cors(cors -> cors.configurationSource(corsConfig....
Tejasvi Singh's user avatar

1
2 3 4 5
533