vote up 0 vote down star

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.

flag

2 Answers

vote up 0 vote down check

Seems like you're not the only one that is getting that error.

I thought there was a jQuery stylesheet plugin but I can't seem to find it anymore - I guess I'm out of the loop, but there are javascript stylesheet reference commands you can use instead to directly edit the stylesheet... maybe try those instead of using the plugin that is giving you errors.

link|flag
vote up 0 vote down

From what I can understand of the plugin, you'll always want to append your rules to <style> and not to <link>. That should keep all your style modifications within the document and would hopefully eliminate any security errors as it is not attempting to access anything off the page.

You'd want to use it like the first example in the demo

$.rule('#content ul{ border:1px solid green }').appendTo('style');
link|flag
Yes but repeatedly running that causes me to get a lot of copies of the same thing. How do I get it to replace a property if it already exists. – Mark Sep 30 at 23:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.