I have used indexOf to check whether i have particular text is present in a sentence or not like the following
var temp = "";
temp="data not available";
if(temp.indexOf("datas") == 0){
    alert("True");
}
else{
    alert("false");
}
The problem i was facing is indexOf is not supported in Internet Explorer 8. How to perform this operation in IE8 too? Is there any default alternate functions available in jquery?
I tried inArray but it supports only array.
 
    