5 lines
146 B
JavaScript
5 lines
146 B
JavaScript
// JavaScript code to show an alert when the webpage is opened
|
|
window.onload = function() {
|
|
alert("This is the file pagea.js and all.js");
|
|
};
|