Hello, I am trying to create new CSS Selectors from the results of an Ajax call. The server returns the string:
------------------------------- fielset{ border.... } legend{ some values... } ------------------------------- Can I append this to my document? Can I replace existing values? What is the best way to dynamically manipulate CSS selectors in this manner without applying each individually via $("legend").css({ color: "red", background: "blue" });