1,187,430 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
29
views
Disappearing menu hamburger from address bar on Safari mobile
I have a web page where I allow users to download an image by clicking a button. I’m using vanilla JavaScript like this:
async function downloadFile(url) {
const response = await fetch(url);
const ...
-3
votes
1
answer
38
views
how to optimize multiple event listeners [closed]
i need help refactoring my code having multiple event listeners. Is there a way you can make the code shorter?
editProfileModalClosedBtn.addEventListener("click", () => {
closeModal(...
-2
votes
0
answers
27
views
Best way to convert HTML → Markdown in VTEX without losing functionality? [closed]
I’m currently working as part of a team that runs an e-commerce platform built on VTEX.
I’m trying to solve a specific technical challenge: converting HTML content into Markdown without losing too ...
-6
votes
0
answers
71
views
Simultaneous autosuggestion, How can we combine to input fields to get a list of all possible results in both field at the same time [closed]
How do I create JavaScript script for HTML input form when user enter text in input field like item_barcode, to show possible title as autocomplete in second input field like item_title and vice versa ...
-4
votes
0
answers
78
views
Sending an email through a form [closed]
I'm trying to create my own website for my catering business (I've taken some college courses on HTML, but it's been 4+ years). I have a form with Name, Email, and section for their event location, ...
0
votes
1
answer
28
views
Automate removal of div/span attributes for code clean-up and easier merging
<span class="SpellingError SCXO166867203 BCX8" style="margin:0px;padding:0px;background-repeat:repeat-x;background-position:left bottom;">bv</span><span class="...
1
vote
1
answer
66
views
Adding style to a <button> makes it inaccessible from the keyboard
I have a front-end Angular app in which menu items need to be completely accessible through the keyboard.
My problem is that I need to add some style formatting to the menu items - and I'm stuck ...
-7
votes
0
answers
52
views
Image formatting help (HTML CSS merged code) [closed]
So I'm trying to get my html to switch from having a 4 by 4 block grid to a 2 by 2 one but no matter if I try row or column or anything else it'll only switch to making the images one vertical line at ...
0
votes
0
answers
41
views
I'm creating a typing game, and can't figure how to make a Tab being recognized as 4 spaces
My snippets in my typing game are pieces of code, so I need to use tab obviously, but I have some logic that displays a yellow block on an current character I have to type, but when I press enter and ...
-1
votes
0
answers
45
views
textarea element cannot be clicked/selected within dialog element [closed]
Using the HotJar survey feature, there is a dialog overlay showing when the cursor leaves the website. However, when I want to click the textarea element to write in it, the browser does not allow me ...
0
votes
0
answers
26
views
HeaderSettings / FooterSettings not working
Goal: Add Header and Footer to generated pages.
IAction in controller responsible for the generation:
[HttpPost]
public async Task<IActionResult> BuildAndDownloadChecklistExport([FromBody] ...
1
vote
0
answers
47
views
stack animation effect with animejs
Hey folks I faced some problem when was animating cards stack with animejs. So I want to achieve effect when you scrolling and card from stack moving up and make a little rotation like on this jam
I ...
0
votes
0
answers
35
views
Striped image pattern in div [duplicate]
I am trying to create a pattern where 2 or more images share the area of a div, in a stripe pattern:
If 2 img are placed in the div, they are displayed side by side, the line between them is diagonal ...
Atmo's user avatar
- 4,217
-3
votes
0
answers
36
views
How to fix this Issue in React-Typescript Number Input Form Field?
This is my custom InputFormField:
import { memo } from 'react';
import { cn } from '@/lib/utils';
import { Input } from '@/components/ui/input';
import { FormField, FormItem, FormLabel, FormControl, ...
0
votes
0
answers
43
views
strange behaviour on href tel with chrome on Android
Using my webapp with google chrome 141.0.7.7390.70 on Android 13 I'm facing problem with tag <a href="tel:xxxxxxx">.
It works mostly but I found a minor case where it doesn't work at ...