I'm getting syntax errors while trying to add an if/else statement the onclick attribute. What is the syntax for this?
<div onclick="var element = $('#selector'); if (element.val() == 'something') { alert('hello'); } else { alert('goodbye'); } ">
Click here
<input type="hidden" id="selector" value="something" />
</div>
...and yes, I must have this javascript in the onclick attribute (can't move this to a function).