jQuery.uncomment

Allows lazy evaluation of HTML blobs by removing them from comment blocks.

Usage

Emit expensive content from the server in comment blocks to ensure lazy loading across all browsers:

    <div class="commented-container">
      <!--
      <script src="some-expensive-widget.js"></script>
      <img src="some-expensive-widget-logo.jpg" />
      -->
    </div>

Then, use this plugin to remove the comments and load the content:

    $(".commented-container").uncomment();