value attributes are missing in ('#someid').html() in firefox
Hi
e.g. I have a dom like this:
<div id="someid">
<input id="inputid1" type="text" name="inputid1" value="sometext"/>
<input id="inputid2" type="text" name="inputid2"
value="somemoretext"/>
</div>
when i use $("#someid").htm(), it should return everything in html
format inside div of someid. It works in IE, but it doesn't work in
firefox. It returns something like
<input id="inputid1" type="text" name="inputid1" /><input
id="inputid2" type="text" name="inputid2"/>
Looks like the value attributes are lost.
Any idea on why and how could get them back?
Thank you so much.
Dennis Leng