www.dxsummit.com Open in urlscan Pro
2606:4700:20::6819:2614  Public Scan

Submitted URL: https://go.simplermedia.com/NzA2LVlJQS0yNjEAAAGCivpFsj5h-v3OnVbvOzGio9DX2S9J1_XpSg5jJCTAJVzxGyx8jP_8HRR6yEZg0QS3sjVvKZs=
Effective URL: https://www.dxsummit.com/?mkt_tok=NzA2LVlJQS0yNjEAAAGCivpFsggCMKCfMWgrpBHqg2I-pE6aKfKluIfH8VkB5Ocxy2UGhuzqbUZFxfX-1Bav0eN...
Submission: On February 14 via api from US — Scanned from DE

Form analysis 3 forms found in the DOM

<form id="frm-ftr" action="">
  <p class="note">Get regular program updates and pricing alerts (all fields are required).</p>
  <div class="footer-form-container">
    <p class="form-first-input form-two-col"><input class="form-control" id="frm-ftr-fname" type="text" placeholder="First Name*" required=""></p>
    <p class="form-two-col"><input class="form-control" id="frm-ftr-lname" type="text" placeholder="Last Name*" required=""></p>
  </div>
  <p><input class="form-control" id="frm-ftr-title" type="text" placeholder="Job Title*" required=""></p>
  <p><input class="form-control" id="frm-ftr-email" type="text" placeholder="Work Email*" required=""></p>
  <p></p>
  <div class="g-recaptcha" data-sitekey="6LfmJKQUAAAAAJZcRYQy7CL_F9jT9kUrrb7oVpoI">
    <div style="width: 304px; height: 78px;">
      <div><iframe title="reCAPTCHA"
          src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6LfmJKQUAAAAAJZcRYQy7CL_F9jT9kUrrb7oVpoI&amp;co=aHR0cHM6Ly93d3cuZHhzdW1taXQuY29tOjQ0Mw..&amp;hl=de&amp;v=BycHQdSIhzR_1EcOLw2mOzYQ&amp;size=normal&amp;cb=eg0bh4aid3lq" width="304"
          height="78" role="presentation" name="a-6vymh8al2phm" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe></div>
      <textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
    </div><iframe style="display: none;"></iframe>
  </div>
  <p></p>
  <p><button class="btn btn--no-arrow btn--block" id="frm-ftr-btn">Sign-Up</button></p>
</form>

<form id="mktoForm_8030" novalidate="novalidate" class="mktoForm mktoHasWidth mktoLayoutLeft" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: rgb(51, 51, 51); width: 1px;">
  <script>
    var mktoForm;
    MktoForms2.loadForm("//app-sj02.marketo.com", "706-YIA-261", 8030, function(form) {});
  </script>
  <script>
    var oFName, oLName, oTitle, oEmail, sEmail;
    jQuery('#frm-ftr-btn').click(function() {
      oFName = jQuery('#frm-ftr-fname');
      oLName = jQuery('#frm-ftr-lname');
      oTitle = jQuery('#frm-ftr-title');
      oEmail = jQuery('#frm-ftr-email');
      sEmail = oEmail.val();
      if (oFName.val().length < 1) {
        alert('Please enter your first name.');
        oFName.focus();
        return false;
      }
      if (oLName.val().length < 1) {
        alert('Please enter your last name.');
        oLName.focus();
        return false;
      }
      if (oTitle.val().length < 1) {
        alert('Please enter your job title.');
        oTitle.focus();
        return false;
      }
      if (!validateEmail(sEmail)) {
        alert('Please enter a valid email address.');
        oEmail.focus();
        return false;
      } else if (isGenericEmail(sEmail)) {
        alert('Sorry, but we don\'t accept generic or list email addresses. These tend to increase spam complaints, which is bad for everyone.\n\nPlease use your work or personal email address.');
        oEmail.focus();
        return false;
      } else if (grecaptcha.getResponse() === '') {
        alert('Please complete captcha to continue.')
        return false;
      } else {
        submitFooterForm(8030);
        return false;
      }
    });

    function submitFooterForm(mktoFormId) {
      var token = grecaptcha.getResponse();
      if (token !== '') {
        jQuery.get('/wp-json/captcha/v1/verify/' + token, function(data) {
          if (data.result !== 'true') return;
          var hash = '';
          var sEmail = oEmail.val();
          var redir = 'https://www.simplermedia.com/mkto/redir-sync/?e=' + sEmail + '&go=' + window.location.protocol + '//' + window.location.hostname + '/thanks-info-subscribe';
          if (typeof MktoForms2 === 'undefined') {
            consoleMsg('FATAL ERROR: MktoForms2 is not defined.');
            return false;
          } else if (mktoFormId < 1) {
            consoleMsg('FATAL ERROR: Form ID is not defined.');
            return false;
          }
          mktoForm = MktoForms2.getForm(mktoFormId)
          if (typeof mktoForm === 'undefined') {
            consoleMsg('FATAL ERROR: Unable to find form by ID: ' + mktoFormId);
            return false;
          }
          consoleMsg('Processing Mkto form ID: ' + mktoFormId);
          mktoForm.addHiddenFields({
            'Email': sEmail,
            'FirstName': oFName.val(),
            'LastName': oLName.val(),
            'Title': oTitle.val()
          });
          mktoForm.onSuccess(function(values, followUpUrl) {
            consoleMsg('Sync\'ed ' + sEmail + ' to Mkto via form ID: ' + mktoFormId);
            //GA event fire
            ga('send', 'pageview', '/event/convert/info-subscribe');
            ga('send', 'event', 'forms', 'submit', 'info-subscribe');
            //sync and go to confirmation
            window.location = redir;
            //block a page reload by returning false OnSuccess
            return false;
          });
          mktoForm.submit();
          return false;
        });
      }
    }
  </script>
  <style type="text/css">
    .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
      color: #fff;
      border: 1px solid #75ae4c;
      padding: 0.4em 1em;
      font-size: 1em;
      background-color: #99c47c;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#99c47c), to(#75ae4c));
      background-image: -webkit-linear-gradient(top, #99c47c, #75ae4c);
      background-image: -moz-linear-gradient(top, #99c47c, #75ae4c);
      background-image: linear-gradient(to bottom, #99c47c, #75ae4c);
    }

    .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
      border: 1px solid #447f19;
    }

    .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:focus {
      outline: none;
      border: 1px solid #447f19;
    }

    .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:active {
      background-color: #75ae4c;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#75ae4c), to(#99c47c));
      background-image: -webkit-linear-gradient(top, #75ae4c, #99c47c);
      background-image: -moz-linear-gradient(top, #75ae4c, #99c47c);
      background-image: linear-gradient(to bottom, #75ae4c, #99c47c);
    }
  </style>
  <div class="mktoButtonRow"><span class="mktoButtonWrap mktoSimple" style="margin-left: 120px;"><button type="submit" class="mktoButton">Submit</button></span></div><input type="hidden" name="formid" class="mktoField mktoFieldDescriptor"
    value="8030"><input type="hidden" name="munchkinId" class="mktoField mktoFieldDescriptor" value="706-YIA-261">
</form>

<form novalidate="novalidate" class="mktoForm mktoHasWidth mktoLayoutLeft" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: rgb(51, 51, 51); visibility: hidden; position: absolute; top: -500px; left: -1000px; width: 1600px;">
</form>

Text Content

Already Registered? Register for Feb 16-17
 * 2022 Conferences
   * BACK
   * Virtual Conference – Feb. 2022
   * Virtual Conference – May 2022
   * Virtual Conference – Aug. 2022
   * Virtual Conference – Oct. 2022
 * Agenda
 * Sponsorship
 * Speakers
 * Video Library
 * FAQs
 * Contact Us
   * BACK
   * About Us
 * Register For Free


HOME

Master the Mayhem!

Conquer the Digital Chaos and Deliver Game-Changing Customer Experiences

DIGITAL EXPERIENCE SUMMIT VIRTUAL CONFERENCE

February 16-17, 2022

Register for Free

DIGITAL EXPERIENCE SUMMIT VIRTUAL CONFERENCE

May 18-19, 2022

Register for Free

DIGITAL EXPERIENCE SUMMIT VIRTUAL CONFERENCE

October 19-20, 2022

Register for Free


FEATURED SPEAKERS


Ajay AgrawalArtificial Intelligence & Machine Learning ExpertFounder of The
Creative Destruction LabNeil HoyneChief Measurement Strategist At GoogleAuthor
Of ConvertedAmy ShiojiSVP, Corporate Strategy and Experience OfficerStrategic
EducationDoug StephensRetail and Consumer FuturistAuthor and Founder of Retail
Prophet

Websites




Meet the Speakers



DXS STARTS FEBRUARY 16, 2022

02 Days
03 Hours
33 Minutes
45 Seconds



ATTENDEES RAVE ABOUT DX SUMMIT


96%

Agenda Satisfaction


“LOVED THE CASE STUDIES AND THE DIFFERENT INDUSTRIES REPRESENTED.”


86%

Recommendation Rate


“I SHARED THE EVENT ON LINKEDIN WITH CLIENTS AND COLLEAGUES. I AM VERY CAREFUL
ABOUT WHAT I SHARE, AND YOUR EVENT WAS AN EASY DECISION.”


80%

Return Viewership


“I WAS VERY IMPRESSED WITH THE AVAILABILITY OF THE PRESENTATIONS AND THE
IMMEDIATE AVAILABILITY OF RECORDINGS. I WAS ABLE TO CATCH UP WITH SESSIONS AN
HOUR OR TWO LATER.”


"Thanks for providing on-demand recordings!"
Attendee FeedbackDXS20
"I thought you all nailed the virtual summit experience. You've definitely set a
bar."
Attendee FeedbackDXS20
"Great speakers, great format! I learned so much.."
Attendee FeedbackDXS20
"The online platform was terrific!! It was super easy to navigate and everything
was very quick to load."
Attendee FeedbackDXS20
"I was one of the speakers and you guys treated us like rockstars and I
appreciated that."
Attendee FeedbackDXS20
"Very good format versus others I've viewed recently. Quick sessions, all in one
day, and good Slack use for community."
Attendee FeedbackDXS20
"I really enjoyed the event and appreciate the opportunity to participate. Happy
Hour was absolutely wonderful!"
Attendee FeedbackDXS20
"Thanks for providing on-demand recordings!"
Attendee FeedbackDXS20
"I thought you all nailed the virtual summit experience. You've definitely set a
bar."
Attendee FeedbackDXS20
Previous
Next


GET A FREE LUNCH ON US!

Each qualified attendee will receieve a free $15 Uber Eats voucher to use during
day-one of the conference on February 16th!*

*Terms and conditions apply. Please see FAQ’s for details


WATCH THE 2021 EVENTS ON DEMAND


DESIGN: LISTEN, ANALYZE AND MODEL 2021 CX

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * Building a holistic, high-impact customer experience practice
 * Design thinking: Fundamentals and practical applications
 * Best practices for personas and customer journey mapping
 * Integrating Voice of the Customer (VoC): Platforms, practices, case studies
 * Your insights suite: Journey analytics, behavioral, explicit, shadow customer
   voice
 * Designing for measurement: Selecting metrics, modeling dashboards, connecting
   KPIs

WATCH NOW


ORCHESTRATE: RAISING YOUR RELEVANCE, ADVANCING OMNICHANNEL

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * Building a crawl-walk-run roadmap for omnichannel, personalized experiences
 * Orchestration foundations: Journey discovery and iterative mapping
 * Strategies and architectures for data fusion and silo busting
 * The role and future of AI in journey orchestration and real-time decisioning
 * Prediction modeling and attribution for ROI impact
 * Case studies of empowered customer service organizations
 * Customer Data Platforms: Landscape, categories, trends, facts and myths

WATCH NOW


BUILD: EFFECTIVE, AGILE TECH STACKS & OPERATING PRACTICES

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * Operational agility: Definitions, practices, roadblocks
 * How technology can enable or inhibit agility
 * Understanding the modern DX stack: Marketing Clouds, DXPs, CDPs, Journey
   Orchestration and Customer Voice
 * The benefits and limitations of behemoth marketing clouds
 * Why only 11% of practitioners are happy with their tools
 * Leveraging AI/ML while enhancing customer trust – where it fits

WATCH NOW


OPTIMIZE: CULTURE, INSIGHTS, EXPERIMENTATION & ROI

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * Fostering a culture of creativity and experimentation
 * Case studies in scaling testing and experimentation
 * Learning from AI: How black boxes share insights
 * Journey analytics practices to reduce friction
 * Using customer surveys effectively for journey refinement
 * Enhanced journey visibility with visualization and dashboarding
 * Measuring impact: Connecting key moments with KPIs

WATCH NOW
View the Agenda



CONNECT WITH DIGITAL CX LEADERS


Previous
Next



MASTER THE DIGITAL MAYHEM!



Tone down the noise — at DX Summit you will:

 * Gain key digital customer experience skills that help you shape your 2022
   initiatives
 * Learn first hand how some of the top brands run their digital ops
 * Get up to speed on the aspirations and realities of AI, Machine Learning and
   Customer Data Platforms


View the Agenda


WHO SHOULD ATTEND

Digital Customer Experience Executives

Customer Engagement Leadership

Analytics and Optimization Owners


TAKE THE NEXT STEP

Digital Experience Summit gives you unparalleled access to the latest
independent research and the people leading industry advancements.

DIGITAL EXPERIENCE SUMMIT VIRTUAL CONFERENCE

February 16-17, 2022

Learn More

DIGITAL EXPERIENCE SUMMIT VIRTUAL CONFERENCE

May 18-19, 2022

Learn More

DIGITAL EXPERIENCE SUMMIT VIRTUAL CONFERENCE

October 19-20, 2022

Learn More


WANT TO SPONSOR?

Engage today's top digital customer experience executives.

Learn More


STAY IN THE LOOP

Get regular program updates and pricing alerts (all fields are required).













Sign-Up

Submit


JOIN THE COMMUNITY

#DXS22



Digital Experience Summit is produced by Simpler Media Group.
Visit other our brands:



© Simpler Media Group, Inc. All rights reserved. Privacy Policy | Terms of Use |
Digital Experience News