is there any reason why this wouldn't be working?
var caseString = "sliderInput";
var theString = caseString.substring(1, 2);
I put it through the Firebug debugger in Firefox and it is giving me the error: "invalid assignment left-hand side."
** here is my exact code
var elements = new Array();
elements = document.getElementsByTagName("Input");
var allSliderInputs = new Array();
var sliderParams = new Array();
var first, last, inc, style;
for (var i=0; i < elements.length ; i++){
var c = elements[i].className; //works fine here
var t = c.substring(0, 2); //when it hits this line it says "invalid assignment left-hand side"
}

}at the end. Not sure if that's known or not.