Hi Guys,
How can I change CSS from javascripts. Im using JQUERY (Dialog) and I want to change the style of a DIV from javascript.
Thanks
|
|
Hi Guys, How can I change CSS from javascripts. Im using JQUERY (Dialog) and I want to change the style of a DIV from javascript. Thanks
|
||
|
|
|
|
Check out the jQuery documentation. If you want anything it will be there. Anyhow, if you want to add styles to elements, you need to use the
So if you have a DIV with ID of "mydiv" and you want to make the background red, you would do
The first way is easier if you're setting multiple things at once. If you want to check what a property is currently set to, you would use a variant of the 2nd option, just omit the value.
Would make the var You can also add and remove classes, doing something like
|
|||
|
|
|
|
There are a couple of ways to manipulate elements styles using the jQuery framework. Take a look through the documentation related to CSS and changing attributes: |
||
|
|
|
|
This answer works even without jQuery. So you have something like this:
If you wish to change just some attributes, you can always find the element using
function and then change the attached color style by
Making your red text appear in green instead. If you want to change the class defined for the div to another style class, you can do:
making the div now use class bar, which makes your previously green text blue. |
||
|
|