Vorrei sapere come verificare se un array è vuoto o nullo in jQuery. Provaiarray.length === 0
ma non ha funzionato. Non ha nemmeno generato alcun errore.
Questo è il codice:
var album_text = new Array();
$("input[name='album_text[]']").each(function(){
if( $(this).val() && $(this).val() != '') {
album_text.push($(this).val());
}
});
if (album_text.length === 0) {
$('#error_message').html("Error");
}
else {
// send data
}
$("input[name='album_text[]']")
stia effettivamente restituendo elementi?