Pixel Facebook CompleteRegistration

  • 17 September 2018
  • 0 replies
  • 3 views

Hi!, I try to put a pixel of facebook when the user has successfully completed the registration on my page. I use this code:

lp.jQuery(function ($) {
    $('.lp-pom-form #lp-pom-button-13').unbind('click tap touchstart').bind('click.formSubmit', function (e) {
       if( $('.lp-pom-form form').valid()){
          fbq('track', 'CompleteRegistration');
        }
  });
  $('form').unbind('keypress').bind('keypress.formSubmit', function(e) {
    if(e.which === 13 && e.target.nodeName.toLowerCase() !== 'textarea' && $('.lp-pom-form form').valid()){
      fbq('track', 'CompleteRegistration');
    }
  });
});

But I have problems with the registration of my pixels on the Facebook side, they are not the same as the ones I have of unbounce.

Could you help me know what the error is?

The url of the page: https://negocio.iontucasa.com.mx/


0 replies

Be the first to reply!

Reply