I would like the following if statement to alert \'yes\' if \'featured\' is in array, regardless of whether it is uppercase or lowercase.
if
I\'m also not
You can use $.grep to filter the array and then check the length:
if ( $.grep( myArray, function (e, i ){ return /featured/i.test(e); }).length > 0 ) alert( "YES!" );