Chain multiple selectors in jQuery
If you want to apply the same action for multiple selectors in jQuery, you should write down their identificators separated by comma. It can be as simple ID of elements, their classes or something more difficult.
For example, I used to apply the same CSS styles for tags <th> and <td> in tables with 'summary' attribute using jQuery. I did it this way:
$('table[summary="Likert scale question"] td:first-child,
table[summary=" Likert scale question"] th:first-child').css({
'font-weight' : 'normal'
});

What do to with Zone.Identifier files after importing a WSL machine and copying data
Support for SharePoint Server 2019 ends on Tuesday, July 14, 2026
How to Never Forget Temporary Test Code: Using #if RELEASE + #error in Visual Studio