Is it possible to get HtmlDocument after jQuery changes? For example, get element by 'myId' after the next change....The js code:...$(document).ready(function ()
{
$("#myContainer").html("<div id='myId'></div>");
});
...The C# code:...var doc = new H...