Dapatkan total lebar elemen termasuk padding dan perbatasan menggunakan jQuery

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