Is there a reason the following html not output correctly?\[code\]<html><script src="http://stackoverflow.com/questions/14389884/jquery_v1.9.js" style="text/javascript" /><script style="text/javascript"> $("#container").load('partial.html')</script><body><h1>Partial Rendering Demo</h1><div id="container"></div></body></html>\[/code\]I am using an example in the ASP.net MVC 4 book, the jquery file is just a copy/paste from the most up-to-date version, all the files are in the same directory, and the 'partial.html' folder simple contains an h2 element. The h2 element however, is never displayed when I run the main html.Am I overlooking something?