[jQuery] JQuery append problem in IE7/8 but not in other browsers!
I have what I believe is quite a simple piece of code that works in
every other browser except IE:
$.post("/here", { this: this_value },function(data){
$("#" + this_ID).append(data);
}, "text");
It simply sends a post to the server and appends the result to a div
with the this_ID. The post is definitely received and can be displayed
using an alert(), but I cannot seem to get the return to display on
the page (the returned data is in the form of html). I have also
tried .html() and .after() but neither work.
Any suggestions gratefully received!