diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php
index 46ac066..8d13f9b 100644
--- a/wp-admin/user-edit.php
+++ b/wp-admin/user-edit.php
@@ -225,6 +225,7 @@ if ( ! IS_PROFILE_PAGE ) {
 <input type="hidden" name="checkuser_id" value="<?php echo get_current_user_id(); ?>" />
 </p>
 
+<div id="user-personal-options-section">
 <h2><?php _e( 'Personal Options' ); ?></h2>
 
 <table class="form-table">
@@ -281,6 +282,7 @@ do_action( 'personal_options', $profileuser );
 ?>
 
 </table>
+</div>
 <?php
 	if ( IS_PROFILE_PAGE ) {
 		/**
@@ -296,6 +298,7 @@ do_action( 'personal_options', $profileuser );
 	}
 ?>
 
+<div id="user-name-section">
 <h2><?php _e( 'Name' ); ?></h2>
 
 <table class="form-table">
@@ -386,7 +389,9 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c
 	</td>
 </tr>
 </table>
+</div>
 
+<div id="user-contact-info-section">
 <h2><?php _e( 'Contact Info' ); ?></h2>
 
 <table class="form-table">
@@ -444,7 +449,9 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c
 	}
 ?>
 </table>
+</div>
 
+<div id="user-about-the-user-section">
 <h2><?php IS_PROFILE_PAGE ? _e( 'About Yourself' ) : _e( 'About the user' ); ?></h2>
 
 <table class="form-table">
@@ -496,7 +503,9 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c
 if ( $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ) ) :
 ?>
 </table>
+</div>
 
+<div id="user-account-management-section">
 <h2><?php _e( 'Account Management' ); ?></h2>
 <table class="form-table">
 <tr id="password" class="user-pass1-wrap">
@@ -574,6 +583,7 @@ if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
 <?php endif; ?>
 
 </table>
+</div>
 
 <?php
 	if ( IS_PROFILE_PAGE ) {
@@ -615,6 +625,7 @@ if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
 if ( count( $profileuser->caps ) > count( $profileuser->roles )
 	&& apply_filters( 'additional_capabilities_display', true, $profileuser )
 ) : ?>
+<div id="user-additional-capabilities-section">
 <h2><?php _e( 'Additional Capabilities' ); ?></h2>
 <table class="form-table">
 <tr class="user-capabilities-wrap">
@@ -634,6 +645,7 @@ if ( count( $profileuser->caps ) > count( $profileuser->roles )
 	</td>
 </tr>
 </table>
+</div>
 <?php endif; ?>
 
 <input type="hidden" name="action" value="update" />
