|
// }); function mce_success_cb(resp) mce_jQuery('#mce-success-response').hide(); mce_jQuery('#mce-error-response').hide(); if (resp.result=="success")
mce_jQuery('#mce-'+resp.result+'-response').show();
mce_jQuery('#mce-'+resp.result+'-response').html(resp.msg);
mce_jQuery('#mc-embedded-subscribe-form').each(function()
this.reset();
);
else
var index = -1;
var msg;
try
var parts = resp.msg.split(' - ',2);
if (parts[1]==undefined)
msg = resp.msg;
else
i = parseInt(parts[0]);
if (i.toString() == parts[0])
index = parts[0];
msg = parts[1];
else
index = -1;
msg = resp.msg;
catch(e)
index = -1;
msg = resp.msg;
try
if (index== -1)
mce_jQuery('#mce-'+resp.result+'-response').show();
mce_jQuery('#mce-'+resp.result+'-response').html(msg);
else
err_id = 'mce_tmp_error_msg';
html = '
'+msg+'
';
var input_id = '#mc_embed_signup';
var f = mce_jQuery(input_id);
if (ftypes[index]=='address')
input_id = '#mce-'+fnames[index]+'-addr1';
f = mce_jQuery(input_id).parent().parent().get(0);
else if (ftypes[index]=='date')
input_id = '#mce-'+fnames[index]+'-month';
f = mce_jQuery(input_id).parent().parent().get(0);
else
input_id = '#mce-'+fnames[index];
f = mce_jQuery().parent(input_id).get(0);
if (f)
mce_jQuery(f).append(html);
mce_jQuery(input_id).focus();
else
mce_jQuery('#mce-'+resp.result+'-response').show();
mce_jQuery('#mce-'+resp.result+'-response').html(msg);
catch(e)
mce_jQuery('#mce-'+resp.result+'-response').show();
mce_jQuery('#mce-'+resp.result+'-response').html(msg);
//]]>
|