Show More
@@ -23,7 +23,17 b'' | |||
|
23 | 23 | for the JavaScript code in this page. |
|
24 | 24 | */ |
|
25 | 25 | |
|
26 | /** | |
|
27 | * An email is a hidden file to prevent spam bots from posting. It has to be | |
|
28 | * hidden. | |
|
29 | */ | |
|
30 | function hideEmailFromForm() { | |
|
31 | $('.form-email').parent().parent().hide(); | |
|
32 | } | |
|
33 | ||
|
26 | 34 | $( document ).ready(function() { |
|
35 | hideEmailFromForm(); | |
|
36 | ||
|
27 | 37 | $("a[href='#top']").click(function() { |
|
28 | 38 | $("html, body").animate({ scrollTop: 0 }, "slow"); |
|
29 | 39 | return false; |
General Comments 0
You need to be logged in to leave comments.
Login now