Skip to content

Instantly share code, notes, and snippets.

View mistermark's full-sized avatar

Mark de Jong mistermark

View GitHub Profile
@mistermark
mistermark / MailChimp_Newsletter_Signup.js
Last active December 11, 2015 10:18
MailChimp Newsletter Subscribe form input fields, show the List options. Hide Labels on keyup etc.
function hey_MCE_Fields() {
var form = jQuery('#mc_signup_form'),
inputEmail = jQuery('#mc_mv_EMAIL', form),
inputFields = jQuery('.mc_input', form);
inputFields.on({
keyup: function(e, i){
var self = this;
var v = jQuery(self).val();
jQuery(self).parent().siblings('div.mc_interests_header, div.mc_interest, div.mc_signup_submit').fadeIn(300);