$("button").click(() => {
    $(":button").css("color", "red");
});

#Combining selectors

$("selector1, selector2 ...selectorn")
Comments