[jQuery] IE not evaluating script tags in get

[jQuery] IE not evaluating script tags in get


Hi,
I'm using $.get like such :
function ajaxLoad(x) {
$.get(x, {dataType : "html"}, function(html) {
ajaxLoaded(html, "")
})
}
the HTML loaded contains some script and some tags.
in FF the script runs fine, but in IE it silently fails.
any ideas what the problem is ?
weepy