Related Topics
Introduction
CSS Page 1
CSS Page 2
CSS Page 3
CSS Page 4
CSS Selectors and the Box Model
CSS Page 5
CSS Page 6
CSS Page 7
CSS Layout and Display Properties
CSS Page 8
CSS Page 9
CSS Page 10
CSS Page 11
CSS Text and Font Properties
CSS Page 12
CSS Page 13
CSS Page 14
CSS Page 15
CSS Backgrounds and Borders
CSS Page 16
CSS Page 17
CSS Page 18
CSS Page 19
CSS Page 20
CSS Colors and Transparency
CSS Page 21
CSS Page 22
CSS Page 23
CSS Page 24
CSS Gradients and Shadows
CSS Page 25
CSS Page 26
CSS Transformations and Animations
CSS Page 27
CSS Page 28
CSS Page 29
CSS Flexbox and Grid Layout
CSS Page 30
CSS Page 31
CSS Page 32
CSS Media Queries and Responsive Design
CSS Page 33
CSS Page 34
CSS Page 35
CSS Transitions and Transforms
CSS Page 36
CSS Page 37
CSS Page 38
CSS Preprocessors (Sass, Less, etc.)
CSS Page 39
CSS Page 40
CSS Page 41
CSS Best Practices and Debugging Techniques.
CSS Page 42
CSS Page 43
CSS Page 44

HTML
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<script>
function myFunction() {
alert("Hello World!");
}
</script>
</head>
<body>
<button onclick="myFunction()">Click me</button>
</body>
</html>
External script: You can also include JavaScript code from an external file using the
src
attribute of the<script>
element. The external file should have a.js
extension and contain only JavaScript code. For example:
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<script src="script.js"></script>
</head>
<body>
<button onclick="myFunction()">Click me</button>
</body>
</html>
In this example, the script.js
file contains the JavaScript code for the myFunction
function.
No matter which method you choose, make sure that your JavaScript code is properly written and follows best practices to ensure that it functions correctly and efficiently.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<script>
function changeText() {
document.getElementById("myText").innerHTML = "Hello World!";
}
</script>
</head>
<body>
<p id="myText">This is some text.</p>
<button onclick="changeText()">Click me</button>
</body>
</html>
In this example, the JavaScript code defines a function changeText()
that changes the content of the HTML element with id="myText"
to “Hello World!” when the button is clicked.
The document.getElementById()
method is used to get a reference to the HTML element with the specified id
, and the innerHTML
property is used to set the content of the element.
When the button is clicked, the changeText()
function is called, which updates the content of the myText
element to “Hello World!”. This is an example of how JavaScript can be used to manipulate the content of an HTML element dynamically.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<script>
function handleClick() {
alert("Button clicked!");
}
window.addEventListener("load", function() {
var button = document.getElementById("myButton");
button.addEventListener("click", handleClick);
});
</script>
</head>
<body>
<button id="myButton">Click me</button>
</body>
</html>
In this example, the JavaScript code defines a function handleClick()
that displays a pop-up message when the button is clicked.
The window.addEventListener()
method is used to add an event listener to the load
event, which fires when the web page has finished loading. This event listener sets up another event listener on the button element with id="myButton"
.
The document.getElementById()
method is used to get a reference to the HTML element with the specified id
, and the addEventListener()
method is used to add an event listener to the button element for the click
event. When the button is clicked, the handleClick()
function is called, which displays the pop-up message.
Note that the event listener is added after the web page has finished loading, using the load
event, to ensure that the button element is available in the DOM when the listener is added.
// Get a reference to the HTML element by its ID
var myElement = document.getElementById("myElement");
// Change the text content of the element
myElement.textContent = "New text content";
In this example, the getElementById()
method is used to get a reference to the HTML element with the specified ID, and the textContent
property is used to set the text content of the element to “New text content”.
2. Changing the HTML content of an element:
// Get a reference to the HTML element by its ID
var myElement = document.getElementById("myElement");
// Change the HTML content of the element
myElement.innerHTML = "<b>New HTML content</b>";
In this example, the getElementById()
method is used to get a reference to the HTML element with the specified ID, and the innerHTML
property is used to set the HTML content of the element to “<b>New HTML content</b>”.
3. Changing the attribute value of an element:
// Get a reference to the HTML element by its ID
var myElement = document.getElementById("myElement");
// Change the value of the attribute
myElement.setAttribute("src", "new-image.jpg");
In this example, the getElementById()
method is used to get a reference to the HTML element with the specified ID, and the setAttribute()
method is used to set the value of the src
attribute to “new-image.jpg”.
These are just a few examples of how JavaScript can be used to change the content of an HTML page dynamically. The specific method used will depend on the desired effect and the type of content being changed.




Popular Category
Topics for You
Introduction
CSS Page 1
CSS Page 2
CSS Page 3
CSS Page 4
CSS Selectors and the Box Model
CSS Page 5
CSS Page 6
CSS Page 7
CSS Layout and Display Properties
CSS Page 8
CSS Page 9
CSS Page 10
CSS Page 11
CSS Text and Font Properties
CSS Page 12
CSS Page 13
CSS Page 14
CSS Page 15
CSS Backgrounds and Borders
CSS Page 16
CSS Page 17
CSS Page 18
CSS Page 19
CSS Page 20
CSS Colors and Transparency
CSS Page 21
CSS Page 22
CSS Page 23
CSS Page 24
CSS Gradients and Shadows
CSS Page 25
CSS Page 26
CSS Transformations and Animations
CSS Page 27
CSS Page 28
CSS Page 29
CSS Flexbox and Grid Layout
CSS Page 30
CSS Page 31
CSS Page 32
CSS Media Queries and Responsive Design
CSS Page 33
CSS Page 34
CSS Page 35
CSS Transitions and Transforms
CSS Page 36
CSS Page 37
CSS Page 38
CSS Preprocessors (Sass, Less, etc.)
CSS Page 39
CSS Page 40
CSS Page 41
CSS Best Practices and Debugging Techniques.
CSS Page 42
CSS Page 43
CSS Page 44
Go through our study material. Your Job is awaiting.