I'm trying to highlight all fields that contain a certain string exactly, in the example below I will also match someuser2, someuser3 etc.
$("div.forumbody .username:contains('someuser')").css("background", "#6a5acd");
How can I search for the exact string and make the background of the field #6a5acd? Thanks in advance.