JSFiddle - React, Tailwind, and code Playground
HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>parent demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<input type="text" value="hello">
<div id="selected">
<input type="text" value="hello">
</div>
<script>
$( "input" ).parent( "#selected" ).css( "background", "yellow" );
</script>
</body>
</html>