About RKS
RKS is a technology, website design and marketing firm with offices in New York and Arizona.
RKS works with home, small business, academic and corporate clients onsite or remotely in 26 states and 5 countries.
Technology Services
Website Services
Marketing Services
Request a quote
RKS is a technology, website design and marketing firm with offices in New York and Arizona.
RKS works with home, small business, academic and corporate clients onsite or remotely in 26 states and 5 countries.
Tired of receiving form spam on your contact forms from random bots? RKS uses JCap (credit to Jonathan Feaster), to help put a stop to these pesky bots.
JCap is a very easy to implement solution to help put an end to spam bots. There is absolutely zero configuration required to implement this script, meaning you don't have to be familiar with PHP or ASP to use it.
Quick facts about using this:
Download the JCap.zip file, containing all of the required files for implementing JCap.
Extract the files to your website. Browse to http://www.domain.com/jcap.js to make sure that they are in the correct location.
On the page where you plan to implement JCap, insert the following HTML code between your <head> and </head> tags.
<script type="text/javascript" src="http://domain.com/jcap.js"></script>
<script type="text/javascript" src="http://domain.com/md5.js"></script>
Note: Make sure that the javascript files are in the correct location, and replace "http://domain.com/" with the location of your website.
Add the following code to your form tag:
onsubmit="return jcap();"
For example, if your form code is the follow:
<form method="post" action="" name="contact">
It should change to:
<form method="post" action="" name="contact" onsubmit="return jcap();">
Next, add the image box code to your form. Within the <form> and </form>, insert the following code in the place you would like to have the image box display:
<input type=text name="uword" id="uword" value="" size=20>
<script language="javascript" type="text/javascript">cimg()</script>
Assuming you have put the files in the correct spot, the following form should work:
<html>
<head>
<title>Contact Form</title>
<script type="text/javascript" src="http://domain.com/jcap.js"></script>
<script type="text/javascript" src="http://domain.com/md5.js"></script>
</head>
<body>
<form method="post" action="" name="contact" onsubmit="return jcap();">
<b>Enter Image:</b><br />
<input type=text name="uword" id="uword" value="" size=20><br />
<script language="javascript" type="text/javascript">cimg()</script>
<input type="submit" value="Submit" name="Submit" />
</form>
</body>
</html>