[jQuery] ActiveX activation with jquery minified

[jQuery] ActiveX activation with jquery minified


Has anyone had any trouble getting the dreaded ActiveX activation even
while using JQuery Minified? I know that there's an issue with using
the packed version and that there are some workarounds with that.
And at first, I figured it had to do with the jquery sifr plugin which
was being implemented. But once I took all scripts out except for
jquery-1.2.6-min.js, the problem still persists-- I can't even run
jquery without accepting the activex control!
Odd.. I know.
I'm not sure if it makes a difference that I'm running locally and not
on a site itself.
Any help would be greatly appreciated... thanks in advance.
<script src="j/jquery-1.2.6.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function() {
    // For opening and closing hidden fields
        $("a.closed").toggle(
            function() {
                $(this).addClass("open");
                $(this).removeClass("closed");
                $(this).parent().next("p.none").toggle("normal");
                },
            function() {
                $(this).addClass("closed");
                $(this).removeClass("open");
                $(this).parent().next("p.none").toggle("fast");
                }
            );
    // Hides all .detail-content fields that have no content
        $("p.none:empty").parent().hide();
    });
</script>