I'm working on a web app that uses javascript to change the classes of 3 div's depending on what buttons the user has pressed.
Is it possible to get the value of the current class of a div?
I tried adding runat="server" to the div tag and then using...
thediv.Attributes.CssStyle.Value
... to get the value of the class.
But it is returning nothing.
Any ideas?