I have the following jQuery (I have it wrapped in a document ready function and all that, so please know that I'm just showing you the inside of the function.
.. var itemIsSold = $("#itemIsSold").val(); alert(itemIsSold); if(!itemIsSold) { ... }
where itemIsSold is a hidden input field. I get the False value of the uppercase F when it hits the warning, but never enters my next if statement. I know this must be something stupidly simple.
source share