On Apr 14, 12:42 pm, "Daemach" <[EMAIL PROTECTED]> wrote:
> IE doesn't seem to like to eval anonymous functions. Is there a way
> around this other than to strip the function wrapper?
> eval("function(){alert('iesucks')}")()
Why not this instead?
eval("(function(){alert('iesucks')})()");
Matt Kruse

