Best site to use and how to implement the following?

I am trying to work on a website for my school that incorportates the following (its a 3d printer thing) Video footage from the camera in the printer The name of the item being printed Estimated amount of time remaining We have ways to

Continue reading →

What inspired the development of the Pounds to Kilograms Converter Chrome Extension for developers?

The issue the project entitled "Streamline Weight Conversions for Developers" is aimed to solve is the fact that transforming weights, namely to and from pounds and kilograms, commonly occurs in developer's activities and it takes a grea

Continue reading →

problem with audio player in HTML, JS, sound not playing

I wrote an audio player for my site using HTML+ JS, but it doesn't play the sound directly from a specific file, for some reason the player only plays the sound from this server "https://s3-us-west-2.amazonaws.com/s.cdpn.io/858/outfoxing

Continue reading →

Looking for JavaScript Library/Framework to Implement Dynamic Item Placement in Table View with Varying Column/Row Spans

I'm working on a project that requires creating a table view where users can insert items into cells with varying column spans and row spans. This functionality is crucial for a storage management application, where users need to place i

Continue reading →

cannot set properties in undefined setting

Why i am getting cannot set properties of undefined setting (background color) in JavaScript code. let btn = document.querySelector('button'); let h1 = document.querySelector('h1'); let h2 = document.querySelector('h2'); let p = document

Continue reading →

Why is toDataURL() returning blank image? (with p5 video)

I'm using p5 to display a video with the webcam and send a picture of it when the user clicks a button (along with lat & lon cords). For some reason though, toDataURL() always returns a blank image. Here's what I have: function setup() {

Continue reading →

How cobrowsing works?

I am trying to create a cobrowsing in-browser application from scratch. I am now dealing with sending data. I solved the communication between the two sides by using signalR, checking for changes on the side that sends the data using Mut

Continue reading →

Recharts - how to show multiple Y values at the same X

I am using Recharts (https://recharts.org/) for my charting purpose on a React Project. I have a dataset, to be charted as line chart where on the same "date" (i.e. X axis - Note: Date only, not date and time,) I can have multiple values

Continue reading →

I am creating a popup that should display as soon as i open my splunk dashbaords... can anyone please help me on this issue ...?

The popup should just be visible as soon as the dashboard gets loaded ..I have tried using some JS query code for this one but I am not getting any results... I am expecting the pop to immediately launch after the dashbaord gets loaded .

Continue reading →

Why is my getAsFile() method returning null?

Here is my code: document.getElementById("Image_Panel").addEventListener('paste', (event) => { // Get the clipboard data console.log("Pasting an image step 1"); const clipboardData = event.clipboardData; // Check if the clipboard d

Continue reading →

Can't drag range input

I'm making a bunch of useless sliders and for this one every time the value is changed I set the max to (1 + 1/n)n (formula for e as n gets closer to infinity) where n is the value. I then set the step to the max / 100. This should make

Continue reading →

Mention a cashier application using a website?

I want to know what examples of web-based cashier applications .please with the name of the application. please help me I have to do my school work,im student from indonesia I am a beginner programmer who needs help from friends

Continue reading →

I can't figure out how to configure "innerHTML" to print text under a contact card

We were provided HTML to copy/paste into our index.html file, and we need to write JavaScript in our script.js file to extract information entered into "Full Name, Email, and Message" and place them under "Contacts." I've attached some s

Continue reading →

C# Switch statement not working - need some guidance please?

I have the following code. I expect it to do the following: When case = ccrs_entitt.ApplicantDetails: it shoud enter the Monday. When case = ccrs_entitt.TheContact: it should enter the Tuesday. This does not seem to be happening struggli

Continue reading →

Why won't my elements shrink when I use flex-shrink?

Ive just started working on the landing page project from the odin project, and I've come across this problem where the header text is overlapped by the "image" when I make the browser window smaller, and when I make it as small as it ca

Continue reading →

Is there a way to create an input that only writeable -99 to 99 and nothing else?

I need an input in React that only write able -99 to 99 is there a way to achieve this? i've tried on key down, but it brokes when you try to write double dashes for example; it works perfectly when you try to write -45 or something.but

Continue reading →

Uncaught (in promise) SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data. problem

html: Notes: Select Task ` ` javascript: ` type here `document.addEventListener("DOMContentLoaded", function () { const selectTaskForm = document.getElementById("selectTaskForm"); const displayTaskSe

Continue reading →

Select Option Dropdown color Changed in Mac?

While using select in nextjs for the Gender, In windows, the background color is white but In Mac, the background color is gray Why? My code: Male Female Others My Windows Output enter image description here My Mac Output ent

Continue reading →

Javascript/ Java: Background Servlet doPost call not rendering data on parent page

I have a Parent Page validateSomething.html having textbox, it has onchange ajax call to application. The application gives response in the background like below- Redirect document.getElementById("callbackForm ").submi

Continue reading →

Appending HTML elements to a paragraph removes their formatting?

I'm trying to append a mix of bolded and non-bolded spans to an HTML paragraph element, but the appended spans don't seem to retain any of the formatting they were assigned. When I try var text = document.createElement("paragraph") var b

Continue reading →