python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I remove a character from a C#.net WPF textbox before it's shown?
I have a project in C#.net using a WPF textbox that validates a character like * as the first character entered. If this character is entered, the rest of the text is good but I cannot show nor use th...
Pendonep
Votes: 0
Answers: 2
addEventListener function
I' currently studying js and DOM and there is something about the eventListener I really don't understand.Here's my problem.
I create a function that takes one argument, check if that arguments is equ...
Tommaso Orlandi
Votes: 0
Answers: 0
Javascript keydown event twice to cancel
My intention is to make div when keydown, and remove div when the same key is pressed again.
This is my code.
let keydown = false;
document.addEventListener('keydown', function(e) {
if (e.code...
Jessie Park
Votes: 0
Answers: 1
Can't trigger event more than once (Jquery, HTML)
I'm trying to do a little script that allows a user to automatically creates a div once the tab button is pressed and the focus is on the y input.
That div is a duplicated of the previous div.
I don't...
David Encina Martínez
Votes: 0
Answers: 0