GitHub : https://github.com/philipbeel/Contactable
Demo : http://plugins.theodin.co.uk/jquery/contactable.1.5/
Website : http://theodin.co.uk
Email : contact@theodin.co.uk
Twitter : @philipbeel
Contactable is a jQuery plugin that enables users to incorporate a feature rich contact form into any website running PHP and Apache.
Call in the jQuery framework and jquery.contactable.js in your webpage
<script type="text/javascript" src="jquery.contactable.js"></script>
Create an element in your HTML that you want the contact form to be generated into.
<div id="contactable"></div>
Initiate the contactable plugin when the page loads
$('#contactable').contactable({
subject: 'A Feeback Message'
});
Open the mail.php file and look for CHANGE@YOURADDRESS.COM and replace with the email address you wish to receive contact messages to.
You can extend the contactables configuration with some of the following configuration
subject: {String} // Email subject heading
url: {String} // URL path of mail.php file must be absolute
name: {String} // Name label
email: {String} // Email label
dropdownTitle: {String} // Dropdown label, if empty no dropdown is displayed
dropdownOptions: {Array} // Select options for dropdown
message: {String} // Message label
submit: {String} // Label text for the submit button
recievedMsg: {String} // Message successfully wording
notRecievedMsg: {String} // Message failed wording
disclaimer: {String} // Text to display at the bottom of the form
hideOnSubmit: {Boolean} // hide the form after submitting it