how to include multiple if statement conditions in jQuery
- by sadmicrowave
I have an if statement that needs to look like this:
if(statement && (statement || statement)){
DO SOMETHING
};
the problem is once I add the parenthesis the statement becomes invalid...any suggestions?