BOT koruması için güzel bir yöntem. İşine yarayan kişiler kullanabilir

eskisi: <div class="test">
Sayfa açılınca <div class="rastgele-165454***"> // random sayı
<!DOCTYPE html>
<html lang="tr" >
<head>
  <meta charset="UTF-8">
  <title>SkyTEST</title>

</head>
<body>
<style>
.test {
color: #fff;
background: #000;
font-size: 33px;
}
[class*='rastgele-']{
color: #fff;
background: #000;
font-size: 33px;
}
</style>
<div class="test">
 Deneme 123
</div>

<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
(function( $ ) {
    'use strict';
    $( document ).ready( function() {
        if( $( '.test' ).length > 0 ) {
            var newClassName = 'rastgele-'+Math.floor( ( new Date() ).getTime() / 1000 );
            $( '.test' ).addClass( newClassName ).removeClass( 'test' );
        }
    } );
} )( jQuery );
</script>
  
</body>
</html>