Questions tagged [javascript]
JavaScript (not to be confused with Java) is a high-level, dynamic, multi-paradigm, object-oriented, prototype-based, weakly-typed, and interpreted language used for both client-side and server-side scripting. Its primary use is in the rendering and manipulation of web pages. Use this tag for questions regarding ECMAScript and its various dialects/implementations (excluding ActionScript and Google-Apps-Script).
So I have this command that sets the bot's "Playing" status:
const commando = require('discord.js-commando');
const { RichEmbed } = require('discord.js');
class sets extends commando.Command {
...
I have a web based protocol system (JavaScript frontend and backend LAMP). It basically controls the sending and receiving of documents. Currently, when someone physically withdraws a document, he / ...
Id like a requestAnimationFrame based animation loop, stopping after x ms. I tried to implement this via a setTimeout that removes the cb after x. However, since setTimeout is about the last thing ...
asked 40 mins ago
zzrv
50144 silver badges2020 bronze badges
Need assisting working on Navigation Menu for mobile and table but getting an error message. What does this mean when you get an error message like this? How do I fix it if run into again
Line 20:...
I have a HTML based GUI with multiple forms and buttons. When a user types something into the input field and clicks the submit button, it should update a python variable in a python script. Below is ...
I want to add external players like in the image, does anyone have a tutorial or something?
if anyone can help me I will be very grateful.
sorry for my bad english.
https://i.stack.imgur.com/GKmae....
as i said in the Title I need Help To put this Value Work only on a Specfic Url
$('#phone').val("000000");
is there a way to do that on Js/Jquery
What i mean :
$('#phone').val("00000000");Url (...
I have been trying to learn Minimax algorithm and made a successful unbeatable Tic-Tac-Toe AI in p5.js, but decided to take it a step further and instead create Connect4. I've been doing quite well so ...
React Native long-press button doesn't trigger on the first press. It only gets triggered if pressed for the second time.
The setup:
const [isOpen, setIsOpen] = useState(false)
const [...
asked 1 hour ago
Kevvv
89411 silver badge1313 bronze badges
I am having an issue with race conditions inside of my angular app.
I figure I can solve this by awaiting the get request whose response the second get request depends upon.
That being said I have ...
asked 1 hour ago
0TTT0
1,04099 silver badges2121 bronze badges
I want to display the last div that was active when the page was refreshed
but two div opens at first boot, can you help me fix it
sample in error
jsfiddle.net/z4vpfb62/
I've a JSON array which is generated from a Collection > Folder/Request > Request structure.
Sample:
[
{
"name": "My Collection",
"folders": [
{
"name": "bdg",
"...
I have a CRUD reminder app, and when users right click on a reminder, a context menu pops up. Options include edit, delete, etc. Each reminder has an id, and the context menu button updates based on ...
I would like to change the text color of the source code.
I do not know why at home it is clear on a white background so not very visible ...
thank you in advance
I am working on a project right now that allows users to record their screen and their webcam at the same time. The UX is very similar to Loom
and as of now I am just using https://github.com/muaz-...