- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
JS Animated. How to activate contact form
October 24, 2011
Example 1
To do this:
- open the template folder
- go the site/js directory
- there open the contact-form.js(forms.js) file with your editor (Adobe Dreamweaver, Notepad etc)
- Using the Find and Replace tool (CTRL+F) search for the ownerEmail
You should see the following line:
ownerEmail:'email@demolink.org'
replace sample email email@demolink.org with your email address. That’s all, now the contact form should send the messages to your email account.
Example 2
- open the template folder
- go the site directory
- there open the HTML file that contains the contact form file with your editor (Adobe Dreamweaver, Notepad etc). Usually it is index-5.html
- Using the Find and Replace tool (CTRL+F) search for the ownerEmail
You should see the following code:
<script type="text/javascript">
$(window).load(function(){
$('#contact-form').forms({
ownerEmail:'#',
successShow:2000
})
})
</script>
Replace the ‘#‘ symbol after ownerEmail with your email address to activate the contact form
Example 3
In the site directory open form.js file. Locate
$(function()
$('#contact-form').forms({
ownerEmail:'#'
})
})
Replace the ‘#‘ symbol after ownerEmail with your email address to activate the contact form
Example 4
In the site directory open scripts.js file. Locate
$('#contact-form').forms({
ownerEmail:'#'
})
Replace the ‘#‘ symbol after ownerEmail with your email address to activate the contact form



