I am new to jQuery & I tried to resolve this on my own without any luck.
I need to change the the Value in the CSS based on a QueryString using jQuery. I tried couple of scripts which didn't work.
URL Example: http:www.xyz.com/Page.aspx?pageID=101&Language=arabic
Based on the language specified in the URL I have to change the CSS value of float:right
in class .Image4x4
and verticleBar
before page is displayed.
.Image4x4
{
width:670px;
float:left; /* for arabic keep right */
height:550px;
background-color:Orange;
}
.verticleBar
{
width:220px;
float:left; /* for arabic keep right */
height:550px;
background-color:Red;
}
I tried few scripts but it didn't work as planed.
I would appreciate any help on this.