Skip to content

Instantly share code, notes, and snippets.

@WaYdotNET
Created November 3, 2010 16:38
Show Gist options
  • Save WaYdotNET/661328 to your computer and use it in GitHub Desktop.
Save WaYdotNET/661328 to your computer and use it in GitHub Desktop.
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style>img{ height: 100px; float: left; }</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div id="images">
</div>
<script>
$.ajax({
url: "test.html",
cache: false,
success: function(html){
$("#results").append(html);
}
});
</script>
<div id="demo">
<h1>Result</h1>
<div id="results"></div>
</div>
</body>
</html>
<p>
<span>Ciao</span>, <br />
<ul>
<li>Primo viaggio</li>
<li>DEcs</li>
</ul>
</p>
<div><b> BRRRRRRRR </b></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment