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

396 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>