Валидацией будем называть проверку документа на соответствие веб-стандартам и выявление существующих ошибок.
$( "button" ).click(function() {
$( this ).replaceWith( "<div>" + $( this ).text() + "</div>" );
});
<!doctype html>
<html>
<head>
<title>test</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<header class="main_head">
</header>
</div>
</div>
</div>
</body>
</html>