Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
33 views

I have chrome extension made with react, and the same webapp on a website. each app should send and receive stream over webrtc. With chrome extension it works well, it sends and receives. on the ...
Slava709's user avatar
-7 votes
1 answer
51 views

I have 3 form fields div { padding: 5px; margin: 10px auto; } input { padding: 3px 5px; } <div>Ingredient Unit Price:<input class="form-control" type="text" name="...
Paul Hopkinson's user avatar
-1 votes
0 answers
38 views

my function i can send everything including pictures too but this array i cant send it. the logic is this via this i wannna know how manny images he removed or if the user changeed the main image from ...
Ali Sedghi's user avatar
0 votes
0 answers
34 views

I need your guidance on something, please. I recently bought my domain name (anexiums.com) and hosting from asurahosting, and then created a subdomain (api.anexiums.com) which I'm supposed to deploy ...
Guy Stephane's user avatar
-2 votes
0 answers
34 views

How can I insert an animation code here so that the images will rotate in a carousel? var swiper = new Swiper(".mySwiper", { slidesPerView: 5, spaceBetween: 10, breakpoints: { 0: { ...
SoundestMage's user avatar
0 votes
1 answer
36 views

I'm trying to create a "Hello World" OpenLayers map, with no unnecessary dependencies. The code is <html> <head> <meta charset="UTF-8"> <meta ...
adrianhb's user avatar
0 votes
0 answers
42 views

I am studying the bootstrap documentation, I have reached this part Embedding YouTube videos In order to understand that part I had to do an example. Here is my markup and code: <!DOCTYPE html> &...
Robert Mdee's user avatar
0 votes
2 answers
57 views

I'm trying to make a progress bar that has a transition animation. Think: a multi-page wizard, and when you advance to the next page the progress bar animates to the next step. When the progress bar ...
Ivan Rubinson's user avatar
-3 votes
0 answers
21 views

I'm new to React and I'm having a problem with Mantine. My Slider is visible and the value updates, but the thumb stays stuck on the left and doesn't move at all. Here is my code: <Box ref={ref} ...
user699701's user avatar
-3 votes
0 answers
57 views

I created a simple button in HTML: <button onclick="show()">Click Me</button> <script> function show(){ alert("Hello"); } </script> But when I click the button, nothing ...
FARHAN AHMAD's user avatar
4 votes
3 answers
62 views

I have an SVG map with countries having both path and text elements. The elements are enclosed in a group with an ID, like this: <g id="RW" ><title>Rwanda</title> <...
Ed S.'s user avatar
  • 155
-7 votes
0 answers
71 views

How to revert the code to span replacement of code tags with translated text in between which was translated by Google translate ? Google translate was not translating text between <code ....> ...
Baangla Deshi's user avatar
-3 votes
0 answers
29 views

enter image description here I’m building a normal React project (not related to blockchain, crypto, or MetaMask). However, Chrome gives this uncaught error in the console: Failed to connect to ...
Philip Chege's user avatar
-11 votes
0 answers
55 views

1:"$Sreact.fragment" 6:I[97215,[],""] 7:I[61123,[],""] 9:I[57468,[],"OutletBoundary"] b:I[57468,[],"MetadataBoundary"] d:I[57468,[],"...
Jay Geezy's user avatar
0 votes
1 answer
61 views

I've been working on this personal website and I had this section where I blog post, but instead of having an never ending blocks of post that you would have to scroll down, i wanted to implement a ...
Shalieen2448's user avatar
Advice
0 votes
4 replies
61 views

I want to match a string according to a pattern but only when it is not preceeded by an other pattern. const source = "abc.def.Ghi\n\ @:test(abc.def.Ghi2)"; const re = /(?!\()([a-z]\w+\.)+([A-Z]\w*)/g;...
Misiur's user avatar
  • 5,393
0 votes
0 answers
43 views

I have a <input type="text"... ...on a page, and need to copy all the changes so that I can display them in a wasm app. I'm stuck with this "select all" operation on Gboard. ...
Davorin Mestric's user avatar
-2 votes
0 answers
66 views

Problem When I type a letter into a cell, the focus does not move to the next cell in the word. After typing a letter, the entire input system becomes unresponsive — I can’t type more letters, ...
Artem Kobziev's user avatar
0 votes
1 answer
47 views

I have chat documents like the following: { members: ['abc','def'] // 2 element list of member UIDs // some other chat metadata } In firestore, I have the following rules on my collection: ...
Isaac's user avatar
  • 284
3 votes
1 answer
63 views

After having carefully converted my JS code for NodeJS from CJS to ESM (with some unexpected difficulties), I am failing to send a body content to my Node Express web server, running for test purposes ...
toreric's user avatar
  • 444
-1 votes
0 answers
33 views

this is gonna be a long one so if you help me i would really appreciate it. i have a page where both create and update product is. my create page works find but i want this page to do update too so ...
Ali Sedghi's user avatar
-2 votes
1 answer
62 views

I'm updating a Node.js project to support both CommonJS and ES Modules (Dual Package). My current issue appears when trying to load the module from the project root using exports field instead of main....
Hector Socarras's user avatar
1 vote
0 answers
38 views

I’m running into a strange issue with react-three-fiber that only shows up in development, but not after deploying to Vercel. Here’s my setup: <Canvas gl={{ antialias: true }} camera={{ position: [...
Sak G's user avatar
  • 20
-3 votes
0 answers
43 views

const DEFAULT_TIME = 0; const TIMER_INTERVAL_MS = 1000; const BLINK_CLASS = 'blink'; const BEEP_SOUND_URL = 'https://assets.mixkit.co/active_storage/sfx/1714/1714-preview.mp3'; let countdownInterval; ...
MPG's user avatar
  • 15
1 vote
0 answers
41 views

I'm using Firebase studio to generate a small app, with Google Auth enabled. The app shows up fine, but when trying to use the Google Auth, like this: async function logInWithGoogle(auth: Auth) { ...
Bart Friederichs's user avatar
-3 votes
0 answers
108 views

I'm just starting JavaScript and I can't declare a variable. Possible that it is being declared but when I use the variables in a math equation there is no output from that equation. For example: <...
selectstart's user avatar
0 votes
1 answer
78 views

We installed websockets for Python on macOS using this terminal command: (.venv) a@as-MacBook-Pro dic % python3 -m pip install websockets server.py: #!/usr/bin/env python3 """Secure ...
user31965232's user avatar
0 votes
0 answers
45 views

I created a small UI class to encapsulate DOM operations: this.items is always an empty NodeList when the script is loaded in the <head> (not at the end of the body). If I move the script to the ...
kunal tyagi's user avatar
-4 votes
4 answers
113 views

I’m trying to select multiple <p> elements in my HTML using querySelectorAll, but it’s not working. Here’s my code: <p id="ss">Paragraph 1</p> <p id="ss">...
SAHIL SINGH RANA's user avatar
1 vote
1 answer
62 views

function init() { let x = 12; let y = 8; let content = document.getElementById("content"); let grid = content.appendChild(document.createElement("div")); grid....
Jacob Bischoff's user avatar
-2 votes
1 answer
33 views

I am building a shopping website for my stationery shop. I have items like pen, pencil, book, copy, scale, bat, ball, etc. I want to categorize products into price ranges: Budget (₹10–₹100) Mid-...
Nikhil kumar jaiswal's user avatar
Advice
1 vote
2 replies
114 views

How would I go about, in an HTML webpage, having a random file in a specific directory be selected in a src? My intent is to have a randomized audio file autoplay whenever I open any webpage on my ...
utternovice's user avatar
-1 votes
1 answer
43 views

I am using a spring boot as backend and react frontend to create a website and I am encountering an error when fetching a user profile using browser from the backend.After login i managed to generate ...
mohamed yusuph's user avatar
3 votes
1 answer
139 views

I use my custom Persian font in jsPDF, but characters for this font show me wrong. I hear The IranNastaliq font uses the 'cswh' feature for such ligatures. 'cswh' is default-off according to the ...
Chris Sermanni's user avatar
-6 votes
1 answer
65 views

So, there is a websocket server (game) and requires socket.io messages like this: 42["game:chat-public:msg","{\"id\":\"2qxgs2\",\"pId\":\"nfityk\"...
takeusback's user avatar
-1 votes
1 answer
44 views

Problem I'm trying to send multiple files from the renderer process to the main process using Electron's IPC, but the file objects arrive empty. Renderer Process: if (files?.length > 1) { window....
Varelion's user avatar
0 votes
0 answers
41 views

As you can see in my short video example event message:successful_payment sometimes doesn't run after payment. In my video example there was only one execution after 3 payments (only the second ...
Flain's user avatar
  • 5
-1 votes
0 answers
50 views

I’m trying to animate a div when a button is clicked. The class is added correctly, but the animation doesn’t run. Here’s my minimal code: function toggleBox() { document.getElementById("box")....
Ayush Raj's user avatar
-4 votes
2 answers
105 views

I am trying to produce a multi-colored cube in perspective, a Minecraft logo, on an HTML canvas. This is part of my code for producing the top face of that cube: for (let i = 0; i < 16; ++i) { ...
Ignacy's user avatar
  • 17
-3 votes
0 answers
34 views

I am trying to understand why my JavaScript function returns undefined even though I have already declared and assigned a value to the variable inside the function. Here is the code I wrote: function ...
Rohitraj03's user avatar
0 votes
0 answers
48 views

Problem I have a mobile sidebar with a dark overlay (backdrop). When the sidebar is open and the user scrolls inside the sidebar, the overlay disappears or becomes unstable on Chrome mobile (Android). ...
Sajokrit's user avatar
Best practices
0 votes
1 replies
49 views

I’m trying to design a “future-proof” React/JS setup where the app can switch between different AI backends (local models like WebGPU/WebLLM, API models like OpenAI/Gemini, and maybe even custom ...
Eli's user avatar
  • 59
-4 votes
0 answers
92 views

I'm trying to make an simple chat website for a school project. The frontend is vanilla JS and backend is ASP DOTNET 8. It is now that I have a lot of trouble with authorization. Login and register ...
Tjeerd Evers's user avatar
-1 votes
0 answers
48 views

I have latest version on node (v25.0.0) and npm (11.4.2) but still unable to download. I used below command npm i --save -D webpack It gave me up to date, audited 18 packages in 6s found 0 ...
Anand Deep Singh's user avatar
0 votes
0 answers
34 views

I'm automating iOS subscription setup using the App Store Connect API(Nest Js). All steps (group, subscription, localization, screenshot upload, pricing) complete successfully. However, in App Store ...
suresh kumar's user avatar
-1 votes
0 answers
50 views

I'm trying to use JSON Forms to create different forms for my website, and I'm using custom buttons and input fields (using custom renderers) to render the form. I'm interested in making the UI right, ...
juztcode's user avatar
  • 1,431
0 votes
0 answers
27 views

I’m building a system where a bot joins a Google Meet call and extracts live transcription. Right now, I’m injecting JavaScript into the Meet tab (through a browser automation bot) and scraping the ...
varaha's user avatar
  • 1
-1 votes
0 answers
34 views

I am receiving position data from a GPS device and fetching geofence latitude-longitude coordinates from my database. I also check which geofence is linked to which child and get the parents’ FCM ...
Pavan Raghuwanshi's user avatar
0 votes
0 answers
76 views

I have a new Rails 8 application built with Bootstrap, Ruby 3.4.7, MySQL, and Haml, running in Firefox 145. It all looks good, except for the uncaught exception: Uncaught SyntaxError: import ...
willyab's user avatar
  • 332
2 votes
2 answers
118 views

Always I reload any page happens a quick flash that changes the entire system to dark mode and comes back again, but really quick. Before, this was happens also on dark mode too, but I could fix it ...
Samuel Franklin's user avatar

1
2 3 4 5
50537