Files
2018-10-16 21:32:40 +05:30

16 lines
497 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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