I learned how to display text + variable, but in this case i can’t figure out what to do, i tried a lot of variations with commas, but i feel that my lack of basic knowledges plays crucial role here, help please
$('div:Contains('"Some text" + '+ $.trim(this.value) +'')')
The SO formatting is showing you that your function call is being interpreted as a string literal. Rather than
try
Also, what is your goal?