The Infographics Course Is Coming Soon, but First…
function sbmgValidateFormPostPg1(name,email) {
var name_fld = document.getElementById('sbmgValidateFormPostPg1' + '_' + name);
var email_fld = document.getElementById('sbmgValidateFormPostPg1' + '_' + email);
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
var msg = '';
if ( name_fld.value == '' ) msg = '- Name Required\n';
if ( reg.test(email_fld.value) == false ) msg += '- Valid Email Required';
if ( msg == '' ) return true;
else alert(msg);
return false;
}
I’m finally getting closer to finishing my course on how anyone can create their own infographics. As far as I know, it’s the first and only one of its kind. It will be geared toward bloggers but will also apply to anyone else interested in creating their own infographics. There will be lots of text, [...]