The code below is only returning the first if statement regardless of whether the var product_check is actually equal to the other else if conditions. Could someone point me in the right direction with this? I'm sure it has to be an easy fix...
var product_check = '<?php echo($productLine); ?>';
if (product_check === 'Blades' || 'Ceiling Tiles' || 'Clouds' || 'Partitions' || 'Panels') {
jQuery('select#input_6_28 option').html('Acoustical Solutions');
} else if (product_check === 'Curva') {
jQuery('select#input_6_28 option').html('Appliances');
} else if(product_check === 'Acrylic Resin Panels' || 'High Gloss Panels' || 'Super Matte Panels' || 'Modular Cork Wall Panels' || 'Reclaimed Hardwood') {
jQuery('select#input_6_28 option').html('Architectural Panels');
}