Obtenha largura total do elemento, incluindo preenchimento e borda usando jQuery

$(elem).outerWidth(); // Returns the width + padding + borders
$(elem).outerWidth( true ); // Returns the width + padding + borders + margins
Fierce Flamingo