python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Document 'load' event callbacks not called; how did I mess this up?
In this HTML document, in Chrome, none of my load event callbacks are called:
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script>
...

Jason C
Votes: 0
Answers: 1
Pass value of input to other input without onclick
I have a working code to pass value from one id to another, but to do that I need a button to pass it onclick. I want to pass the value without a button directly to the other input.
As I did my resear...
nanchalantflow
Votes: 0
Answers: 2
how to push return value from onload function to global variable
var myids = '';
function passid(){
onload = function () {
uidt = tempid.ssid; // some value getting from API
}
}
passid();
console.log(myids);
Can Anyone help me with this, How to ...

Rezan Khan
Votes: 0
Answers: 1
Persistent timer on HTML page load
I have this persistent JavaScript timer. I want to start the timer on page load of an HTML page (and maybe end it on a specific page).
HTML:
<div>Time remaining: <span id="timer">...
prvtat
Votes: 0
Answers: 0