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 287 views
2 answers 7,141 views
1 answer 483 views
1 answer 316 views
2 answers 408 views
...