Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.82 KB

readme.md

File metadata and controls

48 lines (34 loc) · 1.82 KB

Contactable jQuery plugin.

GitHub : https://github.com/philipbeel/Contactable
Demo : http://plugins.theodin.co.uk/jquery/contactable.1.5/
Website : http://theodin.co.uk
Email : [email protected]
Twitter : @philipbeel

Descrpition

Contactable is a jQuery plugin that enables users to incorporate a feature rich contact form into any website running PHP and Apache.

Usage

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'
});

IMPORTANT

Open the mail.php file and look for [email protected] and replace with the email address you wish to receive contact messages to.

Plugin parameters

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