Actually i'm studying jQuery and using Twitter BootStrap to try to develop a WP template. What I would like to achieve is the possibility to change a css property using jquery.
This is what I would like to achieve
From this:
margin-left: 2.564102564102564%;
To this:
margin-right: 2.564102564102564%;
As you can see I would like to keep the value but change the property.
This is the 'original' css part:
.row-fluid [class*="span"] {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.564102564102564%;
}