If you're talking about style picks, use ::selection and ::-moz-selection in CSS.
::selection { color: ...; background-color: ...; } ::-moz-selection { color: ...; background-color: ...; }
Alternatively, if you want to select an arbitrary element with a class:
CSS
.highlighted { color: ...; background-color: ...; }
Javascript
yourElement.className = "highlighted";
source share