I want to disable css when going through the if statement. But when I add another condition to the if statement the functions is not working.
Here is the function:
$(document).ready(function(){
$("#exampleSelect1").change(function (){
$('#form-zonwering').css('display','block');
if($("#exampleSelect1 option:selected").val()!= "Greenline_Veranda" || "Profiline_Veranda"){
$('#form-zonwering').css('display','none');}
});
});
Thanks for your time!