Is this a valid way to refresh part of webpage:
$("#content").load(location.href+" #content>*","");
Note that I’m not requesting any new data here, but basically re-loading the content of a div as part of an .ajax success function.
This seems much easier than requesting data through an ajax function and loading that into the page, but I’m wondering if there are any drawbacks or issues with this method.
On this page: http://blog.mediasoft.be/partial-page-refresh-with-ajax-and-jquery/ it appears that some people are having trouble getting this to work on IE, so I’m going to assume it’s not 100% reliable yet and will continue to use the standard way of refreshing content using JQuery for now.