jQuery Find Index of Array Item

Sam Deering
Share

Simple jQuery code snippet to find the index of an array item given the item value. It’s a bit like the .NET Array.FindIndex Method but use the in Array function.

//syntax
jQuery.inArray( value, array )

//example
jQuery.inArray("Sam", array)