..... else { $("#contact-form").hide('slow'); $(".success-message1") .after('Your message was successfully sent!'); $(".success-message2") .after('You should receive a response with in one to two business days.'); } .....
$(".success-message1").html('Your message was successfully sent!'); $(".success-message2").html('You should receive a response with in one to two business days.');
CSS Selectors doesn't require colon before bracket:
Thank you sooo much! Oh, yeah I know CSS selectors do not need colons before the bracket ... I had just tried using the CSS Pseudo-element :after and had forgotten to delete the colon.
Here is the js code ...
Here is the CSS ...
None of these options worked ... Here is a link to my website ... http://lynchburgpatriots.webatu.com/Contact.html
Any help would be appreciated!!!
Thanks!
CSS Selectors doesn't require colon before bracket:
Thanks again!