my function below keeps breaking at var pos1=dtStr.indexOf(dtch)
function isDate(dtStr){
var daysInMonth = DaysArray(12);
var pos1 = dtStr.indexOf(dtCh);
var pos2 = dtStr.indexOf(dtCh, pos1 + 1);
var strMonth = dtStr.substring(0, pos1);
var strDay = dtStr.substring(pos1 + 1, pos2);
var strYear = dtStr.substring(pos2 + 1);
strYr = strYear;
the error message that I am getting is SCRIPT438: Object doesn't support property or method 'indexOf'. I took out all of my code after the variables and I am still receiving the same error
isDate? – Xeon06 Nov 16 '11 at 21:46this? You understand thatindexOfis a function for strings? What exactly are you trying to achieve? – Xeon06 Nov 16 '11 at 21:53thisis the input object. You need to use it's value instead. See @Rocket's answer. – Xeon06 Nov 16 '11 at 22:07