Search Results

0
votes

.load in jQuery not loading cfcharts in IE6

Have you tried jQuery.get? Maybe something like: $("#bank").bind("click", function(){ $.get("bank.cfm", function(data){ $("#chartx").html(data); }); }); …