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

Submitted URL: https://go.simplermedia.com/NzA2LVlJQS0yNjEAAAGHcQ1Am8Lq2Go7OMpKO5UbC24WKEPwduOyN6LRwUEHWcSXPz0j-DuFb_jPMZZveZZohCiIqac=
Effective URL: https://www.dxsummit.com/?mkt_tok=NzA2LVlJQS0yNjEAAAGHcQ1Am3ZvVEETR5sW13KJdKXzvDJQfN2iHqzybDjw9-4iSMnT19_dZ0eH8mj4oE2ikXq...
Submission: On October 13 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=vP4jQKq0YJFzU6e21-BGy3GP&amp;size=normal&amp;cb=m9yjuhfjfs7" width="304"
          height="78" role="presentation" name="a-2ou39je8s3zq" 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_10367" 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", 10367, 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(10367);
        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="10367"><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 Oct 26-27
 * 2022 Conferences
   * BACK
   * Virtual Conference – Feb. 2022
   * Virtual Conference – May 2022
   * Virtual Conference – Aug. 2022
   * Virtual Conference – Oct. 2022
 * Agenda
 * Sponsorship
 * Speakers
 * Video Library
   * BACK
   * Video Library – Q1 2022
   * Video Library – Q2 2022
   * Video Library – Q3 2022
 * FAQs
 * About Us
 * Contact Us
 * Register For Free


HOME

Master the Mayhem!

Conquer the Digital Chaos and Deliver Game-Changing Customer Experiences

VIRTUAL CONFERENCE

CUSTOMER EXPERIENCE STRATEGIES FOR AN ACCELERATED REALITY

February 16-17, 2022

Now On Demand
VIRTUAL CONFERENCE

NEXTGEN CUSTOMER SERVICE EXCELLENCE

May 18-19, 2022

Now On Demand
VIRTUAL CONFERENCE

HOW GREAT ORGANIZATIONS EMPOWER CUSTOMER EXPERIENCE TEAMS

August 17-18, 2022

Now On Demand
VIRTUAL CONFERENCE

FUTURE CX - BLENDING PHYSICAL & DIGITAL EXPERIENCES

October 26-27, 2022

Register for Free


FEATURED SPEAKERS


Sean AlbertsonHead of Client Experience Measurement & AnalyticsCharles Schwab &
Co., Inc.Michele BartramCustomer Experience OfficerU.S. Census BureauCamille
StewartGlobal Head of Product Security StrategyGoogle

Websites




Meet the Speakers



DX SUMMIT Q4 BEGINS OCTOBER 26, 2022

13 Days
03 Hours
30 Minutes
24 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
VIRTUAL CONFERENCE

CUSTOMER EXPERIENCE STRATEGIES FOR AN ACCELERATED REALITY

February 16-17, 2022

On Demand
VIRTUAL CONFERENCE

NEXTGEN CUSTOMER SERVICE EXCELLENCE

May 18-19, 2022

On Demand
VIRTUAL CONFERENCE

HOW GREAT ORGANIZATIONS EMPOWER CUSTOMER EXPERIENCE TEAMS

August 17-18, 2022

On Demand
VIRTUAL CONFERENCE

FUTURE CX - BLENDING PHYSICAL & DIGITAL EXPERIENCES

October 26-27, 2022

Learn More


WATCH THE PREVIOUS 2022 EVENTS ON DEMAND


CUSTOMER EXPERIENCE STRATEGIES FOR AN ACCELERATED REALITY

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * CX strategy and marketing priorities for 2022
 * Customer listening and expanded Voice of Customer
 * Contact center optimization using AI and predictive analytics
 * CX strategy, CDPs and the customer conundrum
 * Data privacy v. personalization: first-party data, cookies
 * Game-changing solutions: composable DXP, low-code and more

WATCH NOW


NEXTGEN CUSTOMER SERVICE EXCELLENCE

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * Call Center Innovation – Intelligent Automation, Artificial Intelligence,
   Prescriptive Analytics and More
 * Voice of the Customer Best Practices – Operationalizing VoC Across Customer
   Touch and Service Points
 * The Omnichannel Conundrum – Leveraging Customer Data and Personalization in a
   Privacy Conscious World
 * Human vs Bots – Balancing Self Service, Conversational AI/ML and RPA with
   Human Touch
 * Hybrid & Remote Call Centers – Lessons Learned from 2020 to 2022

WATCH NOW


HOW GREAT ORGANIZATIONS EMPOWER CUSTOMER EXPERIENCE TEAMS

Now Available
ON DEMAND


CONFERENCE TOPICS:

 * Cultivating Operational Agility: Leadership, Culture and How New Tech Like
   Headless, Composable/MACH and Low Code Change the Game
 * Modern Customer Journey Tools & Practices for Deep Empathy and Team Alignment
 * Customer Data Management for Employee Empowerment & Intelligent Experiences
 * Operationalizing Voice of the Customer and Empowering the Frontline
 * The Human Factor: Blending AI, Insights and Conversations to Solve Customer
   Pains

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.

VIRTUAL CONFERENCE

CUSTOMER EXPERIENCE STRATEGIES FOR AN ACCELERATED REALITY

February 16-17, 2022

On Demand
VIRTUAL CONFERENCE

NEXTGEN CUSTOMER SERVICE EXCELLENCE

May 18-19, 2022

On Demand
VIRTUAL CONFERENCE

HOW GREAT ORGANIZATIONS EMPOWER CUSTOMER EXPERIENCE TEAMS

August 17-18, 2022

On Demand
VIRTUAL CONFERENCE

FUTURE CX - BLENDING PHYSICAL & DIGITAL EXPERIENCES

October 26-27, 2022

Learn More


WANT TO SPONSOR?

Engage today's top digital customer experience executives.

Contact Us


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






AddThis Sharing Sidebar
Share to LinkedInLinkedInShare to TwitterTwitterShare to FacebookFacebookShare
to BufferBufferShare to EmailEmail
Hide
Show
Close

AddThis