Posts

Showing posts from May, 2007

Dynamically setting classnames from style sheet

I was trying to find a way to dynamically set class name from stylesheet using javascript. many of the sites adviced to use obj.style.className==' ', but this did not work! instead use this : obj.className==' ' -- this work is IE and Firefox.