Side navigation
    Ticket #3159: ticket3159.html
  
  
  
    File ticket3159.html, 0.5 KB (added by jeberma, July 15, 2008 04:42AM UTC)
    
      Demonstrates uncaching issue.  Run with Firebug enabled.
    
  
  
    
      
      <html>
	<head>
		<script type="text/javascript" src="jquery-1.2.6.js"></script>
		<script type="text/javascript">
			$(document).ready(function() {
				$('#blah').data('foo','bar');
				// this fails to uncache 
				$('#container').empty();
				// this works
				//$('#container').children().removeData().end().empty();
				console.dir($.cache);
			});
		</script>
	</head>
	<body>
		<div id="container">
			<form id="blah">
				blah	
			</form>
		</div>
	</body>
    
  
  
    Download in other formats:
    Original Format
  
File ticket3159.html, 0.5 KB (added by jeberma, July 15, 2008 04:42AM UTC)
Demonstrates uncaching issue. Run with Firebug enabled.
<html>
	<head>
		<script type="text/javascript" src="jquery-1.2.6.js"></script>
		<script type="text/javascript">
			$(document).ready(function() {
				$('#blah').data('foo','bar');
				// this fails to uncache 
				$('#container').empty();
				// this works
				//$('#container').children().removeData().end().empty();
				console.dir($.cache);
			});
		</script>
	</head>
	<body>
		<div id="container">
			<form id="blah">
				blah	
			</form>
		</div>
	</body>