[jQuery] Re: Is it possible to alter internal CSS properties?

2007-11-01 Thread James Dempster
You could use LiveQuery, or I've not checked if this is the right way of doing it or even if it will work but I guess you could do. $('style type=text/css.someClass { background-color:yellow }/ style').appendTo('head'); /James On Nov 1, 9:24 am, Jesse Klaasse [EMAIL PROTECTED] wrote: As we

[jQuery] Re: Is it possible to alter internal CSS properties?

2007-11-01 Thread Danny
You can manipulate stylesheets, though it's not pretty (or built-in to jQuery; you could write plugins to do it). See http://www.hunlock.com/blogs/Totally_Pwn_CSS_with_Javascript On Nov 1, 4:24 am, Jesse Klaasse [EMAIL PROTECTED] wrote: As we all know, we can do the following using jQuery:

[jQuery] Re: Is it possible to alter internal CSS properties?

2007-11-01 Thread Danny
I actually wrote a plugin that may be helpful (worked with jQuery 1.1, Firefox and Internet Explorer. I haven't updated it since) See http://www.nabble.com/Creating-stylesheets-in-jQuery-tf3298905.html#a9176651 Lets you write $.style('.someClass').css('background-color', 'yellow'); On Nov 1,