MongoDB: How to do any consult ignoring case sensitive?

You need use a regex function .

Example :

var name =  $('.name').val();
var regex = new RegExp(["^", name, "$"].join(""), "i");
var cat = Categories.find({name:regex });

Leave a comment