Selection of div with title

Selection of div with title

I've got a div with a complex title

<div title=" 00:00 - 23:55 [Holiday] and some more text">...</div>

which I need to filter on the keyword e.g. [Holiday] or just Holiday and set a css property.

This dosn't filter the right div:

$("div[title$='\\[Holiday\\]']").css('background-color','red');

Any idea?