>  The solution suggested earlier for executing javascript code  
>  embedded in HTML returned by an ajax call by using  
>  eval.call(window,...) works great in FF, but not in IE6.
>  How can we change the execution context of eval?

Can you change the way the function is declared?
 
<script type="text/javascript"> 
myfunc = function() { 
    alert("Hi");
}
</script>

When evaled, that should give you a global myfunc variable that has the
function object.



_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to