I am working on populating the div container with square boxes, but I'm having trouble adjusting the size of my #gridSquare
div. Despite trying to change its height and width using jQuery, it doesn't seem to work as expected.
$('#gridSquare').css({"height": "38.4", "width": "38.4"});
You can find the fiddle containing the rest of my code linked below for reference.
Thank you for taking the time to review this!
My ultimate goal is to utilize the squareSide variable to dynamically set the height and width of the squares.