Is there a shorter way of writing this for jQuery? Bundling it somehow? Seems awfully inefficient.
if (
($('#fname-field').val() == '') ||
($('#lname-field').val() == '') ||
($('#cell-field').val() == '') ||
($('#email-field').val() == '') ||
($('#street-field').val() == '') ||
($('#pcode-field').val() == '') ||
($('#city-field').val() == '') ||
) { // Do something }
I have searched around but haven't found an answer yet. I don't think the following is equivalent:
if ($('#fname-field, #lname-field, #cell-field etc...' == '')) { // Do something }
It's not equivalent since it doesn't run the conditions as a group, instead individually? Right?