<!DOCTYPE html>
<html lang="ru_RU">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style>
.box {
cursor: pointer;
font-size: 24px;
display: block;
}
.box2 {
color: blue;
font-size: 24px;
display: block;
}
</style>
<script>
jQuery( document ).ready( function ( $ ) {
$( '.box' ).hover( function () {
// навели мышь на элемент
$( '.box2' ).css( 'color', 'red' );
}, function () {
// убрали мышь с элемента
$( '.box2' ).css( 'color', '' );
} );
} );
</script>
</head>
<body>
<div>
<p class="box">Какой то текст</p>
</div>
<div>
<p class="box2">Элемент</p>
</div>
</body>
</html>
Дополнить код, что бы когда разрешение экрана было меньше 640px
то при наведении .box то .box2 менял цвет orange а когда убрали курсор с .box при разрешение меньше 640 то .box2 менял на цвет blue