JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css">
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<div>1</div>
<div>12</div>
<div>13</div>
<div>135</div
JavaScript
var search = '13';
$('div').filter(function() {
return $(this).text() == search;
}).css('background','#f00');