I am trying to dynamically load the contents of a div tag with a .cfm page that contains a cfchart in png format. When the user clicks on a link, I am using the load function to put the .cfm page into the div.
$("#bank").bind("click", function(){
$("#chartx").load("bank.cfm");
});
I can get this to come up perfectly in Firefox, but not in IE6. It gives no error messages.