Run
Reset
Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
<!DOCTYPE html> <html> <head> <title>Learning jQuery</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> </head> <body> <div id="box"></div> <button>Get Dimensions</button> <p id="result">Dimensions will be printed here...</p> </body> </html>
#box{ width: 300px; height: 150px; background-color: cyan; }
$(document).ready(function(){ $("button").click(function(){ var divWidth = $("#box").width(); var divHeight = $("#box").height(); $("#result").html("Width: " + divWidth + ", " + "Height: " + divHeight); }); });