Skip to content

Commit

Permalink
Fixed contact form message jQuery selector
Browse files Browse the repository at this point in the history
  • Loading branch information
tomanistor committed Aug 3, 2017
1 parent 4c626b0 commit c1589b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
var name = $("input[name=name]").val();
var email = $("input[name=email").val();
var subject = $("input[name=_subject").val();
var message = $("input[name=message]").val();
var message = $("textarea[name=message]").val();

// Send to Formspree
$.ajax({
Expand Down

0 comments on commit c1589b5

Please sign in to comment.