I want to find all input boxes with id containing _date
id
_date
My code is like this:
If you just want to check ending with "_date" rather than containing "_date" you can use
$('input[id$="_date"]')
I'm thinking of one of these...
$('input[id*="_date"]').css('background-color', 'red');