Possible Duplicate:
.indexOf function on an array not working in IE7/8 using JavaScript
Im developing for IE7 and have some troubles with the javascript function indexOf.
After browsing some sites I read that IE7 doesnt support indexOf. Is this correct, and if so, whats the easiest way to check if a string contains a given string?
var test = window.location.toString();
test = test.toLowerCase();
var idString = "28A3CASDGAGHTSDASF34134";
idString = idString.toLowerCase();
if(test.indexOf(idString) > 0){
alert('worked');
}
Edit: Most likely some coding error by myself