无法在Internet上发送发布请求Jquery $ .Post探索9 ActiveX过滤

I have a problem with Iexplore 9 ActiveX Filtering.

I create an application which is set session through jquery $.post, when I turn on ActiveX filtering in Iexplore 9, it blocks the post request.

$('.sidid').click(function(){
    val = $(this).val();
    if ($(this).is(':checked')) { //when checked
        $.post("session_cetak_po.php", {"sidid":val}, function(results) {
        });
    }else{ //when unchecked
        $.post("session_cetak_po.php", {"sidid":val,"unchecked":"1"}, function(results) {
        });
    }
});

Any suggestion how to fix it?

Thanks before :)

Do not turn on ActiveX filtering. :)

Use load() instead of post(). load() send data via GET