Expand my Community achievements bar.

Join us WEDNESDAY, 6/7/23 @8am PT for the next Adobe Target Community Q&A Coffee Break! Bill Ozinga, John Mosbaugh, Justin Patrick, and Eric Thibeault will be taking all of your Target Recommendations questions in the chat ~ learn more and register today!

Flicker problem

Avatar

Level 1

Hi,

We're having a flicker problem too. We tried different methods to hide the body and we tried the hack suggested here and we still see the old content before seeing the new content. We're currently using mbox version 63 and we can't change to at.js right now. Would you have any suggestion to fix this problem?

Code:

<style>

.FH .promo-overview {display: none;}

</style>

<script type="text/javascript">

jQuery('html').addClass('FH');

var intervalCode = setInterval(function() { 

     if (jQuery('.promo-simple-image').length >= 0) {

          clearInterval(intervalCode);

          jQuery('.promo-simple-image img').attr('src','cq5dam.web.690.388.jpeg');

          jQuery('.promo-overview').show();

     }

}, 100);

</script>

1 Reply

Avatar

Level 10

It looks like you meant to include a link to some workarounds. Would you mind posting that again so we can see what you've tried. I don't see the link in your original post.