I have an example of how to do that here. http://www.commadot.com/jquery/slideMenu/
Also, you may be interested in the behavior plugin. It listens for dom changes and will rebind clicks, and other events when something shows up, so you dont need to redo that sort of thing. Glen On 8/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > 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" }); > >