1,186,728 questions
2
votes
1
answer
36
views
Google Calendar Appoint pop-up button showing at end of HTML
I am building a site for a friend that requires me to include a button to the Google Appointment Calendar. I followed what Google said to do, but when I implemented it, it showed the button at the ...
5
votes
1
answer
40
views
Moving annotations on Column Chart with Negative Value Google Chart
I am using google charts and I need to chart pos/neg values with annotations. The negative annotations show up by the axis.
Is there a way to switch the -0.95 annotation to below the blue column?
...
0
votes
2
answers
105
views
HTML Submit Button with two JavaScript functions but have a setTimeout between them
I have two JavaScript functions and i have a submit button for each function, whats the best implementation to add a few seconds wait between the two functions for example in JavaScript.
setTimeout(...
Advice
0
votes
4
replies
37
views
How to make a website? Frontend and Backend
Hi I am a beginner in programming, I just want to ask if I were to make a website what IDE should I use to run the frontend and backend? Like merge ( ? ) Can I use Visual Studio? Or something else. ...
0
votes
1
answer
71
views
Script that creates HTML that references files in google drive
I have a script that creates an HTML file, and I would like for the HTML to be able to access files on my google drive (mainly for img tags). I've found various posts that gives ways to do this, but ...
-1
votes
0
answers
43
views
CORS and Preflight (403) error in WordPress REST API using vanilla JS and Application Passwords [closed]
Body of the Question
I am developing a web tool (a Single Page Application built with vanilla HTML, CSS, and JS) to manage publications on multiple client WordPress sites. I utilize the native ...
0
votes
1
answer
96
views
HTML range input value off by 1
Using the code:
const input = document.querySelector("#Tester");
console.log(input);
console.log(input.value);
<input type="range" id="Tester" min="4" max="250" step="5" value="25" />
24
It ...
1
vote
2
answers
82
views
Linebreak in Textbox
I want to create a textbox with the following requirements:
width: 16 columns (characters)
height: 3 lines
max chars: 48
lines should always break after 16 characters, no matter what char has been ...
0
votes
0
answers
72
views
A newly added iframe is not loading the URI specified in the src attribute after pressing the browser back button
In an application I am working on, there is a page which has a bunch of iframes on it that contain page previews for pages in the user's project, organized by sections. A user can click to add a new ...
-4
votes
0
answers
109
views
Making a console rock, paper scissors game [closed]
Hi so I’m learning JavaScript and having issues with my Rock paper scissors game.
When I press enter in my console for the user to input their choice the input box pops out twice and the console ...
1
vote
1
answer
78
views
HTML5 Canvas: How to generate ambigram-style text same after 180° rotation?
I am working on an HTML5 Canvas project where I generate text dynamically and want it to behave like an ambigram (the text should look the same after rotating the canvas by 180 degrees).
My goal:
...
4
votes
0
answers
90
views
SortableJS: hard to drop an item into a parent when dragging the last item of a wrapped row
I’m using SortableJS to build a horizontal nested drag-and-drop layout.
The lists are flex containers with flex-wrap: wrap, so items are placed in rows and can wrap to the next line.
Items can be ...
-6
votes
0
answers
49
views
How to implement this complex nested layout using Bootstrap 5 grid system? [closed]
I'm trying to practice my Bootstrap grid skills by replicating a specific layout from an exercise. I'm having trouble with the nesting and the alignment of the sidebars (Menu and Asides).
Here is the ...
-8
votes
1
answer
109
views
HTML span elements inside <p> not passing automated tests for nutrition label project [closed]
Create a p element and give it the text Total Fat 8g 10%. Then, wrap the text Total Fat in one span element, the text 10% in another, and give them each a class of bold.
The code is correct still I ...
1
vote
2
answers
112
views
Dynamic change of block height
I'm using code that hides content and reveals a button when the page is scrolled down 50px. Clicking the button reveals the same content, and clicking it again hides it.
You can see that when you hide ...