I am trying to create a dialog box that will appear only if the browser selected is IE (any version) however I get this error:
Message: HTML Parsing E
I had this same problem. My issue was that I was calling a Javascript function before the containing div was closed.
div
To fix the problem, I call the Javascript function within the jQuery ready event handler:
ready
$(document).ready(function(){ some_random_javascript_function(); });