497 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			497 B
		
	
	
	
	
	
	
	
title, localeTitle
| title | localeTitle | 
|---|---|
| Target the Parent of an Element Using jQuery | Задайте родительский элемент элемента с помощью jQuery | 
Задайте родительский элемент элемента с помощью jQuery
Решение
<script> 
  $(document).ready(function() { 
    $("#target1").parent().css("background-color", "red"); // Selects the parent of #target1 and changes its background-color to red 
  }); 
 </script>