Can someone help me with checking if a specific value is in my array? I want to achieve something like that, any suggestions on how to do it?
if(jQuery.inArray($('#ValueInputTitle').val, variableValueInput) !== -1)
{
console.log("is in array");}
else {
console.log("is NOT in array");
}