How To Kill Spam Bots Dead
(and save your email ISP reputation! )
Code For Step 2:
1 2 3 | id="mainform" < input class = "inf_field" id = "inf_option_Checkbox" name = "inf_option_Checkbox" type = "checkbox" value = "" > < input class = "inf_field" id = "email" name = "email" type = "text" value = "" > |
Code For Step 3:
1 2 3 4 5 6 7 8 9 10 | <script type= "text/javascript" > jQuery( "#mainform" ).submit( function () { if (jQuery( "#email" ).val() != "" ) { return false ; } jQuery( "#inf_option_Checkbox" ).val( "5642" ); jQuery( "#inf_option_Checkbox" ).prop( "checked" , true ); return true ; }); </script> |
Code For Step 4:
1 2 3 4 | .inf_field { display : none ; visibility: hidden ; } |