Hey all i am trying to get my jquery code below to work:
function submitContactUs() {
if ($('#cf-name-txt').val() == '' || $('#cf-name-txt').val().charAt(0) == '*') {
$('#cf-name-txt').append("<img src=\"img/attention.png\" width=\"16\" height=\"16\" style=\"position:absolute; left: -7px; top: 7px;\" />");
}
}
And the HTML code is this:
<div id="contactus-name">
<input type="text" id="cf-name-txt" style="width: 200px;" class="formBoxesContact" value="*Your Name">
</div>
It works with adding the image to the end of the html code above but its not displaying? It looks like this in firebug:

What am i doing to cause it not to display?
