Sto provando a verificare se c'è già un valore nella matrice. Se il valore non esiste nell'array, dovrebbe essere aggiunto all'array, se il valore esiste già, dovrebbe essere eliminato.jQuery: controlla se il valore è nella matrice, in caso affermativo, cancella, in caso contrario, aggiungi
var selectArr = [];
$('.media-search').mouseenter(function(){
var $this = $(this);
$this.toggleClass('highlight');
}).mouseleave(function(){
var $this = $(this);
$this.toggleClass('highlight');
}).on('click',function(){
var dataid = $(this).data('id');
if(selectArry){ // need to somehow check if value (dataid) exists.
selectArr.push(dataid); // adds the data into the array
}else{
// somehow remove the dataid value if exists in array already
}
});