1,186,686 questions
0
votes
0
answers
5
views
How do i use position absolute on a flex item without it disappearing?
I'm at lost right now, and would appreciate any help please. I've been trying to layering images over each other using positioning but they keep disappearing when I mame them position absolute.
how do ...
1
vote
3
answers
44
views
Object does not respond to mouse events
I have a JS script that swaps out an element's inner text with an alternative held in a data-* attribute:
<span data-swapinnertext="new text">old text</span>
I have been using ...
1
vote
1
answer
30
views
Highlight entire lines when possibly overflowing
On my website I have code snippets as rectangular areas with a scrollbar if the text overflows horizontally. I would like to mark insertions and deletions with <ins> and <del> and style ...
-2
votes
0
answers
15
views
Google Captcha V3 trouble sending to gmail [duplicate]
I am updating a contact form to include "google reCAPTCHA V3", when I add the code as per this guide "https://stackoverflow.com/questions/54183985/how-can-i-implement-google-recaptcha-...
Advice
0
votes
0
replies
18
views
How can I make hidden supplementary content available to assistive technologies and mobile users?
My project uses a custom plugin for pulling in open data from multiple sources and outputs those sources in different areas of a profile page. For example: title, URL, social icons, list of categories ...
Advice
0
votes
5
replies
55
views
Is it possible to loop a click event
So for my present JavaScript when the user clicks the button to enter the desired squares they want to make it works but when I click it again to enter another number it doesn’t work till I reload my ...
-1
votes
0
answers
22
views
How to stack two iframes vertically that expand to their full lengths? [duplicate]
I have test1.html and test2.html with independent CSS and JS files. All of the files are in the same folder. I would like to stack them vertically such that they expand to their full heights. So no ...
-1
votes
1
answer
54
views
How do I get my other elements to not go under my position div? [closed]
How to i get my description div to not go under my img div when I reduce to size of my browser window? I've noticed that with positioning it doesn't behave normally at all it acts like its layering ...
1
vote
1
answer
73
views
How can I stop my overlay from overflowing the site body?
I'm trying to add teeth images over my embed site. Despite the size of the image, the main body of the site keeps overflowing to the right. I've already tried making any overflow-x in the body hidden ...
0
votes
0
answers
35
views
Does Chrome (or any other browser) upload INPUT TYPE="FILE" multiple files in parallel with HTTP 2
According to a comment in response to List is null for large files. Reproducible at will : -
Yes... the actual spec: datatracker.ietf.org/doc/html/rfc7578 - when a request is using multipart/form-data ...
0
votes
1
answer
84
views
Prevent Firefox 'Save address?' prompt on form submit in JavaScript address book app
I'm building a web-based address book module for a larger app where users will frequently create/edit contacts. Mozilla Firefox aggressively prompts "Save Address?" or "Update contact?&...
Best practices
2
votes
3
replies
44
views
How do I write an accessible description for a chart with data fed by a database?
I am trying to make a website that uses lots of charts and graphs accessible. I read that each chart or graph needs to have a description that describes the data it shows. My problem is this... how? ...
1
vote
2
answers
68
views
incorrect mouseenter function area outside of designated area?
So im designing an element/code in js and html that makes it so when you hover over a class called "img_container_invis" it makes a comment icon appear, but even though everything should be ...
1
vote
1
answer
61
views
How to ensure 100% height for the page with accordions
I have 3 div. div 1 is fixed height, div 2 & div 3 are expandable and only one can be expanded at a time.
I want such that all 3 divs will be visible at all times.
If the contents of div 2 is long ...
Advice
0
votes
10
replies
154
views
How can I remove existing content before adding more content with JavaScript
So I have a function in my JavaScript that creates a serious grid cells but I want when the user clicks and input desired numbers, I want the grid on display to be removed. I tried adding a display ...