Skip to main content

Bug Tracker

Side navigation

Ticket #3163: test1000.html


File test1000.html, 0.5 KB (added by henric, August 15, 2008 06:46PM UTC)

Variant of documentation's html API example

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>
  $(document).ready(function(){
    for(i = 0; i < 1000; ++i)
	    $("div").html("<span class='red'>Hello <b>Again</b></span>");
  });
  </script>
  <style>
  .red { color:red; }
  </style>
</head>
<body>
  <span>Hello</span>
  <div></div>
  <div></div>
  <div></div>
</body>
</html>

Download in other formats:

Original Format