JSFiddle - React, Tailwind, and code Playground

by urbycoz

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

<h1>Welcome to My Homepage</h1>
<div class="container">
  <div class="intro">My name is Donald
    <div>I am a duck</div>
  </div>
  <div>I live in Duckburg.</div>
  <div>My best friend is Mickey.</div>

</div>

JavaScript

$(document).ready(function () {
   $(".container :not(.intro)").css("background-color", "yellow");
 });