DEV Community

Cover image for HTML Tutorials: Building Interactive Web Pages with JavaScript #3
Zahir Hadi Athallah
Zahir Hadi Athallah

Posted on • Updated on

HTML Tutorials: Building Interactive Web Pages with JavaScript #3

Introduction:

Welcome to Part 3 of our HTML tutorials! In this article, we will explore the fundamentals of JavaScript and learn how to add interactivity to our web pages. JavaScript is a versatile programming language that runs in the browser and allows us to create dynamic and interactive web experiences. By combining HTML, CSS, and JavaScript, we can build powerful and engaging web applications. Let's get started!

Introduction to JavaScript:

JavaScript is a scripting language that enables us to add behavior to our web pages. It allows us to manipulate HTML elements, handle events, perform calculations, and much more. JavaScript code is typically embedded within <script> tags in an HTML document.

Example:

<!DOCTYPE html>
<html>
<head>
    <title>My Web Page</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <h1>Hello, <span id="name">Guest</span>!</h1>

    <button onclick="changeName()">Change Name</button>

    <script>
        function changeName() {
            var newName = prompt("Enter your name:");
            document.getElementById("name").textContent = newName;
        }
    </script>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

In the example above, we have added a JavaScript function changeName() that changes the content of the <span> element when the "Change Name" button is clicked.

  • Handling Events:

JavaScript allows us to handle various events triggered by user actions, such as clicking a button, hovering over an element, or submitting a form. We can attach event handlers to HTML elements using JavaScript.

Example:

<button onclick="myFunction()">Click Me</button>

<script>
    function myFunction() {
        alert("Button clicked!");
    }
</script>
Enter fullscreen mode Exit fullscreen mode

In the example above, the myFunction() is executed when the button is clicked, displaying an alert message.

  • Manipulating HTML Elements:

JavaScript provides methods to manipulate HTML elements dynamically. We can change the content, style, attributes, and more of elements using JavaScript.

Example:

<h2 id="demo">Hello!</h2>

<script>
    var element = document.getElementById("demo");
    element.innerHTML = "Hello, JavaScript!";
    element.style.color = "red";
</script>
Enter fullscreen mode Exit fullscreen mode

In the example above, the JavaScript code selects the <h2> element with the ID "demo" and changes its content to "Hello, JavaScript!" and its color to red.

  • Working with Forms:

JavaScript can validate user input and perform actions based on form submissions. We can access form elements, validate input, and respond to events like form submission.

Example:

<form onsubmit="validateForm()">
    <input type="text" id="name" placeholder="Enter your name">
    <input type="submit" value="Submit">
</form>

<script>
    function validateForm() {
        var name = document.getElementById("name").value;
        if (name === "") {
            alert("Please enter your name.");
            return false;
        }
    }
</script>
Enter fullscreen mode Exit fullscreen mode

In the example above, the JavaScript function validateForm() checks if the name input field is empty. If it is, an alert message is displayed, and the form submission is prevented.

  • External JavaScript:

While inline JavaScript can be useful, it is often better to separate the JavaScript code into an external file and link it to the HTML document using the <script> tag.

Example:

<!DOCTYPE html>
<html>
<head>
    <title>My Web Page</title>
    <link rel="stylesheet" href="styles.css">
    <script src="script.js"></script>
</head>
<body>
    <!-- HTML content goes here -->
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

In the example above, the JavaScript code is stored in an external file called "script.js" and linked to the HTML page using the <script> tag.

Closing:

JavaScript adds interactivity and dynamic functionality to web pages. In this tutorial, we explored the basics of JavaScript, including handling events, manipulating HTML elements, working with forms, and using external JavaScript files. With JavaScript, you can create engaging user experiences and bring your web pages to life. Keep practicing and experimenting with JavaScript to unlock its full potential. Happy coding!

Top comments (0)