I am having an issue with getting html 5 to work on elements added to the body in IE. I am using the HTML 5 shiv included in Modernizr but it is the same problem with any other HTML 5 library.
It works fine for any element except HTML 5 elements added directly to the body, which gives the same error message as if I was using jQuery without the shiv (Unexpected call to method or property access). This is a breaking example in IE (7, 8) with Modernizr or html5.js loaded:
$(document).ready(function()
{
$('body').append('<nav class="test"></nav>');
$('.test').html("Testing HTML 5");
});
Any ideas why this might happen?