<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h2>JQuery Lab</h2>
<div id="Tile1">
<div><p /></div>
<div class="dummy">
<a>
<img width="300" height="60">
</a>
</div>
</div>
<script type"text/javascript">
$(document).ready(function(){
$("#Tile1 .dummy a").html('New test'); //
<-- Add text to image.
$("p").html('Hello World');
});
</script>
</body>
</html>