JS Animated. How to activate contact form

Example 1

To do this:

  1. open the template folder
  2. go the site/js directory
  3. there open the contact-form.js(forms.js) file with your editor (Adobe Dreamweaver, Notepad etc)
  4. 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

  1. open the template folder
  2. go the site directory
  3. there open the HTML file that contains the contact form file with your editor (Adobe Dreamweaver, Notepad etc). Usually it is index-5.html
  4. 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

JS Animated. How to activate contact form, 3.1 out of 5 based on 21 ratings