I got this style applied to a div
div#content { border: 1px solid skyblue; }
and i want to be able to alert the width of the border, I ha
you can try this
var border = document.getElementById("yourDiv").clientWidth - document.getElementById("yourDiv").offsetWidth; alert(border);