Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Score of 0
0 answers
5 views

I am trying to make a frameset that displays random pages from my site. There are a handful of pages that need to open in new tabs and are excluded. I'm not sure how to link this JS script with the ...
Score of 0
0 answers
22 views

I have integrated razorpay on my MERN Stack website. Whenever I click the upgrade now button on my website, it's not redirecting to razorpay Instead your browser not supported alert comes. I tried ...
Tooling
0 votes
1 replies
47 views

I'm building a feature for a chat app where users can mix two emojis together to create a fun, unique combo image, similar to Google's "Emoji Kitchen" in Gboard. The goal is to make ...
Score of -3
0 answers
63 views

I want to hide a certain div (where my gift wrap options are displayed in) on the Woocommerce product page when the product price is less than € 5. This the code I have nog, but that doesn't seem to ...
Advice
1 vote
1 replies
75 views

I'm currently working as a react native developer, i want to distribute my application locally using drive without using appstore and playstore I know i can implement it on android for apk direclty ...
Score of 0
1 answer
46 views

I'm working on a Vue.js project and in the App.vue file I wrote this code that reacts to all exceptions and rejections of my app. window.addEventListener('error', event => { errorDialog.value ...
Advice
0 votes
2 replies
50 views

If I send separate chunks from MediaRecorder to the server, how can I make each one playable? Only the first chunk contains the header/meta information. Is there a reliable way to create a header, for ...
Score of -7
0 answers
111 views

I have a list of columns and rows, and sliders where you could edit their dimensions. If their dimensions get too big, how would you shrink the elements in the grid, to remove any sort of scrolling. ...
Best practices
1 vote
4 replies
122 views

I am developing a Node.js application that uses Winston for logging and relies heavily on asynchronous operations. For intellectual property reasons, I need to deploy this application on a client-...
Best practices
0 votes
1 replies
62 views

I'm building a web application that reads text aloud using the Web Speech API (SpeechSynthesis). I want speech to automatically pause when the surrounding environment becomes noisy and resume once the ...
Best practices
0 votes
1 replies
66 views

I'm building a React application with a global voice navigation feature using the Web Speech API. I'm managing speech recognition, speech synthesis, keyboard shortcuts, and page-specific voice ...
Best practices
0 votes
2 replies
53 views

import CryptoJS from 'crypto-js'; const GLOBAL_SALT = 'AarthSaathiEncryptSaltSecretKey'; /** * Encrypts a field value client-side using a key derived from the user's UID. * @param {string} value ...
Best practices
0 votes
3 replies
62 views

// UserContext.jsx — global user profile state // Handles missing Firebase gracefully (works without credentials during dev) import { createContext, useContext, useState, useEffect } from 'react'; ...
Score of 0
0 answers
74 views

The drag works just how I'd like it to, but I'd like it not to trigger open link when dragged. I've tried fiddling around with my little knowledge of JavaScript, however I just can't seem to get it to ...
Score of 0
0 answers
93 views

function clamp(x, min, max) { return Math.max(Math.min(x, max), min); } function b(canvas, x0, y0, x1, y1, color = '#000000', func) { const ctx = canvas.getContext('2d'); x0 = Math.round(x0); ...

15 30 50 per page
1
2 3 4 5
168189