I need to create a CSS stylesheet class dynamically in JavaScript and assign it to some HTML elements like - div, table, span, tr, etc and to some controls like asp:Textbox, Dropdownlist and datalist.
Is it possible?
It would be nice with a sample.
|
I need to create a CSS stylesheet class dynamically in JavaScript and assign it to some HTML elements like - div, table, span, tr, etc and to some controls like asp:Textbox, Dropdownlist and datalist. Is it possible? It would be nice with a sample. |
|||||
|
|
Although I'm not sure why you want to create CSS classes with JavaScript, here is an option:
|
|||||||||||||
|
|
Found a better solution, which works across all browsers.
Function is used as follows.
Note that even though function name is createClass it actually creates a selector. So dont forget to add .(period) before your class name.
No need to mention that you can create other selectors too with this function. |
|||||||||||
|
|
YUI has by far the best stylesheet utility I have seen out there. I encourage you to check it out, but here's a taste:
There are obviously other much simpler ways of changing styles on the fly such as those suggested here. If they make sense for your problem, they might be best, but there are definitely reasons why modifying css is a better solution. The most obvious case is when you need to modify a large number of elements. The other major case is if you need your style changes to involve the cascade. Using the dom to modify an element will always have a higher priority. Its the sledgehammer approach and is equivalent to using the style attribute directly on the html element. That is not always the desired effect. |
||||
|
|
|
As of IE 9. You can now load a text file and set a style.innerHTML property. So essentially you can now load a css file through ajax (and get the callback) and then just set the text inside of a style tag like this. This works in other browsers, not sure how far back. But as long as you don't need to support IE8 then it would work.
and then you can have it pull an external file like the myCss.css
|
|||
|
|
|
The following may be of interest. Not fully sure of its adoption by modern browsers, but it should do what you need it to do: |
||||
|
|
|
Check out the various JavaScript libraries. I recommend jQuery, check out the tutorial. Then it's easy to add style (not really a class unless it already exists in the CSS):
Or add the same style to all elements with
If you want to create new CSS classes at run-time try: jQuery.Rule |
|||||||||||||
|
|
There is a light jQuery plugin which allows to generate CSS declarations: jQuery-injectCSS In fact, it uses JSS (CSS described by JSON), but it's quite easy to handle in order to generate dynamic css stylesheets.
|
|||
|
|