ऊंचाई का प्रयोग करें किसी तत्व की ऊंचाई निर्धारित करने के लिए गुण। जावास्क्रिप्ट के साथ बटन की ऊंचाई निर्धारित करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p>This is Demo Text.</p> <button type="button" id="myID" onclick="display()">Update Height</button> <script> function display() { document.getElementById("myID").style.height = "100px"; } </script> </body> </html>