I have a structure of html like this:
some elements inside some elements inside
Select all div elements whose id attribute contains the string triger:
div
id
triger
$('div[id*="triger"]');
There's more about using *= in the jQuery documentation: Attribute Contains Selector [name*="value"]
*=