Skip to content
Snippets Groups Projects
Commit 16eb0bf8 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed bug -- overly general jQuery selector was hiding all error messages.

parent a8f685cd
No related merge requests found
...@@ -14,7 +14,7 @@ $(document).ready(function(){ ...@@ -14,7 +14,7 @@ $(document).ready(function(){
// This is the ajax for the feedback // This is the ajax for the feedback
$(document).ready(function(){ $(document).ready(function(){
$('.error').hide(); $('#contact_form label.error').hide();
$("div#slideOut").removeClass('slideOutForm'); $("div#slideOut").removeClass('slideOutForm');
$('input.text-input').addClass('feedbackDeselect'); $('input.text-input').addClass('feedbackDeselect');
$('input.text-input').focus(function(){ $('input.text-input').focus(function(){
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment