> jquery
> var originalTitle=$("a.basic").attr("title");
> $("p.area1").text(originalTitle);
>
> html
> <p>This is where the original title should go</p>
> <div class="area1"></div>Your selector is looking for a paragraph with a class of 'area1'. However, there is no paragraph with that class in your markup. -DA

