Is anyone familiar with the jquery rule plugin? http://flesler.blogspot.com/2007/11/jqueryrule.html
I need to dynamically change css rules but do not understand the syntax of the plugin or what every method does.
The demo here does not demo every method: http://flesler.webs.com/jQuery.Rule/
My usecase is this, I want to edit a rule that may or may not exist in stylesheets.
Because the function may be called multiple times very quickly, I don't want to use append and end up with too many style elements.
Also, if I have:
div { color: red; background-color:black; }
I would need a rule change that changes only the property.
So if I want to change the color to blue:
$.rule('div').css("color","blue");
It should give me
div { color: blue; background-color:black; }
I also often get 'Security error" code: "1000' errors all the time. I'm not sure what causes this, is it because js is trying to alter stylesheets? In which case I'd prefer to alter style elements in head rather than the linked sheets to avoid this error.
So basically, which method do I want to use, and how do I use it without creating an error?
Thanks.
I guess I'm also asking if there's a way to check if a select and property already exists in the style, so that it could be replaced rather than have another added onto it.
