JSFiddle - React, Tailwind, and code Playground

by Trần Ngọc Minh

HTML

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<input name="nationality" type="text" value="Chinese" required><br>

<input name="nation" type="text" value="English"><br>

<input name="country" type="text" value="Germany"><br>

<input name="anothernation" type="text" value="Norwegian"><br>

JavaScript

$(document).ready(function(){
	$("input[type='text'][required]").css("background-color", "yellow");
// p thứ 1
});