how to check particul value is existing in arrayornot in javascript code example
Example: jquery check value exists in array
if ($.inArray('example', myArray) != -1)
{
// found it
}
if ($.inArray('example', myArray) != -1)
{
// found it
}