Functions file
// Just add this in child theme’s functions.php:
// Tell IE to display content in the highest mode available
add_action( 'genesis_meta', 'sk_ie_display_mode' );
function sk_ie_display_mode() {
echo '<meta http-equiv="X-UA-Compatible" content="IE=edge">';
}
// Reference: http://stackoverflow.com/a/6771584