Files
The Coding Aviator 48312b3ff9 fix(guide): Fix language names in jQuery section of guide (#35271)
* Fix language names

* Fix language name

* Update index.md

* Fix language names

* Change javascript to js
2019-03-01 12:33:52 -08:00

325 B

title
title
Target the Parent of an Element Using jQuery

Target the Parent of an Element Using jQuery

Solution

<script>
  $(document).ready(function() {
    $("#target1").parent().css("background-color", "red"); // Selects the parent of #target1 and changes its background-color to red
  });
</script>