JQuery Validate - Honeypot Validation to Control SPAM

JQuery Validate - Honeypot Validation to Control SPAM

Hello All.

I am using jquery with my wordpress blog to post information to my online CRM system ( capsule CRM)  Everything is working great, except that I am getting tons of SPAM. 

The folks at capsule suggested that I add a field,called comment, and then using CSS hide it from a human user.


<input id="comment" type="text" name="COMMENT"/>

CSS Entry
#comment { display: none; }

The idea would be that a SPAMMER would add information to this field.  if the field has data, then it should not post.

My question is, how do I get Jquery validate to make sure this field is blank before it posts.

Thanks in advance for your help!

Dabe