There is such jQuery code
$('.error_fixed').children().eq(0).addClass('alert_error').html('Ошика') So I gave the child a class of 'alert_error', and how can I now directly contact the parent myself in the same thread?
You can of course
$('.error_fixed').children().eq(0).addClass('alert_error').html('Ошика').parent().css('background', 'red') But this is not an option.