Tuesday, 06 September 2011 03:32
Jquery .html() api uses
Jquery innerhtml() to find html content within certain div element. Jquery html() api filters the data and do exception handling around innerhtml which is inconsistent at different browsers.
Test
$('.mydiv').html("Hello!");
This would give the following output:
Hello!

Read more: