Is there a faster way of writing this?
if ($(\'#id\').val()==7 || $(\'#id\').val()==8 || $(\'#id\').val()==9){ console.log(\'value of #id is 7, 8, or 9!\
You could do a switch:
switch($('#id').val()){ case 7: case 8: case 9: console.log('value of #id is 7, 8, or 9!'); break; default: console.log('value of #id is NOT 7, 8, or 9!') }