when i tried to display the html selected by jquery. i noticed that the code is not standard compliant.
alert($("div").html())
produces
<DIV class=abc></DIV>
it's missing the "s.
Also, is there a shortcut to convert something like that to
<div class="abc"></div>
in c#?