При наведении на кнопку хочу изменить цвет границы инпута, но почему-то не получается
html
<tr>
<td class="ya-site-form__search-input-layout-l">
<div class="ya-site-form__input">
<input name="text" type="search" value="" class="ya-site-form__input-text" placeholder="Поиск" autocomplete="off">
</div>
</td>
<td class="ya-site-form__search-input-layout-r">
<input class="ya-site-form__submit" type="button" value="Найти">
</td>
</tr>
jQuery
$(document).ready(function() {
$('.ya-site-form__submit').on('mouseenter', function() {
$('.ya-site-form__input-text').attr('style', 'border-color: #404040!important');
});
});