Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to assign events with HTML DOM in JavaScript

2 Answers

0 votes
<!DOCTYPE html>
<html>

<head></head>

<body>

<button id="button-id">Diplay Date</button>

<p id="p-id"></p>

<script>

document.getElementById("button-id").onclick = GetDate;

function GetDate() 
{
    document.getElementById("p-id").innerHTML = Date();
}

/*
run:

onclick you will see the date:

Wed Jul 08 2015 08:59:32 GMT+0300 (Jerusalem Daylight Time) 

*/

</script>

</body>

</html>

 



answered Jul 8, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
 
<head></head>
 
<body>
 
<button id="button-id">Diplay Date</button>
 
<p id="p-id"></p>

<script>
 
document.getElementById("button-id").onclick = GetDate;
 
function GetDate() 
{
    var d = new Date();  
    var dt = d.getMonth() + 1 + '/' + d.getDate() + '/' + d.getFullYear();
    
    document.getElementById("p-id").innerHTML = dt;
}
 
/*
run:
 
onclick you will see the date:
 
7/8/2015
 
*/
 
</script>

</body>
 
</html>

 



answered Jul 8, 2015 by avibootz

Related questions

1 answer 275 views
2 answers 7,118 views
1 answer 447 views
1 answer 304 views
2 answers 387 views
...