<script>
$("#commentInfo").html("I m here");
</script>
if I have a standard start/end tag, then jquery is fine
<span id='commentInfo' class="commentInfo"></span>
Testing
output
I m here
Testing
if I have shorttag
<span id='commentInfo' class="commentInfo"/>
it only displays
I m here
how could configure the jquery to support shorttag ?
innerHTMLproperty set? – sdleihssirhc Feb 20 '11 at 2:45