Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Taming 3rd party content

Taming 3rd party content

Sergey Chernyshev presents about reducing the harm caused by these tools and best practices for consumers as well as creators of such 3rd party content.

Sergey Chernyshev

July 22, 2010
Tweet

More Decks by Sergey Chernyshev

Other Decks in Technology

Transcript

  1. Ads • Pay bills ($$$) • Chain of brokers •

    Rich (heavy) content • Need lots of user data
  2. Ads: how bad is it? • document.write (blocks, can't be

    post loaded) • Sometimes up to 7 nested wrappers, more then 20 requests • Fail rarely, but block the whole site
  3. Ads: Solutions! • Load after content is loaded • Use

    IFrames • Don't use 3rd party engines
  4. Widgets • Free content or functionality • Use JS for

    everything • Rarely cache • More complexity for your site
  5. Widgets: Solutions! • Find more static (or flash) version •

    Rewrite using their AJAX API • Use any API and assemble on back end, cache
  6. Trackers • Show what's going on • Need lots of

    user data • Delay load event (a little)
  7. Trackers: what to do? • Not so bad. Not much

    you can do either. • Use async version if exists (Google Analytics)
  8. When YOU develop widgets! • Don't use document.write! • HTML

    placeholder, async code & data • Cache JS code (in the browser) • Cache all or part of the data (know your TTLS) • Provide static alternative to SLO-JS (image / HTML to download / flash)