If the first <div> element in the document has an id of "myDIV", change its font-size: - Javascript Language Basics

Javascript examples for Language Basics:HTML

Description

If the first <div> element in the document has an id of "myDIV", change its font-size:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.mystyle {//  www.j  ava  2s. c o  m
    width: 300px;
    height: 50px;
    text-align: center;
    background-color: coral;
    color: white;
    margin-bottom: 10px;
    float: left;
    margin: 8px;
}
</style>
</head>
<body>


<button onclick="myFunction()">Test</button><br>

<div id="myDIV" class="mystyle">
I am a DIV element
</div>

<div class="mystyle">
I am also DIV element
</div>

<script>
function myFunction() {
    var x = document.getElementsByTagName("DIV")[0];

    if (x.id === "myDIV") {
        x.style.fontSize = "30px";
    }
}
</script>

</body>
</html>

Related Tutorials