here i write code where all persons names comes from Facebook API . and it is showing on lightbox. now i want to implement search functionality using javasciprt/jquery . Can
Maybe use indexOf method:
var text ="some name"; var search = "some"; if (text.indexOf(search)!=-1) { // do someting with found item }