marketers.coop

This is where you should report issues arising from the subscription filters.
Locked
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

viraladmin wrote: Tue Jan 17, 2017 10:39 am @I do not see anything in the inspector window of ABP listed for blocked.
be sure to be in the ABP tab in developer tools

Code: Select all

- click on the new "Adblock Plus" tab
- refresh the page (or press F5)
if still no triggered filter, probably could be something related to the shadowroot applied by ABP on all pages
in this case you should report directly on the ABP bug tracker (providing also the test account and all the details to reproduce the issue)
https://issues.adblockplus.org
viraladmin
New Member
New Member
Posts: 9
Joined: Tue Jan 17, 2017 7:38 am

Post by viraladmin »

This is exactly where the problem seems to exist in our script when ABP is installed on Chrome.

Code: Select all

    $.ajax({      // works 
        'url': '/includes/test2.php',     // works 
        'type': 'GET',            // works 
        'data': {             // works 
            'id': ids       // works 
        },                   // works 
        'success': function (data) {        // works  
            if((data).replace(/\s/g,'') == "Correct") {           // works 
                $( "#frame", top.document ).toggle(),           // works 
                $( "#frame2", top.document ).toggle(),          // works 
                $.ajax({                                                     // fails
                    type: "POST",                                         // fails
                    url: "/includes/sur_crd.php",                    // fails
                    data: '&title=<?php echo $title1; ?>&siteuser=<?php echo $user1; ?>',      // fails
                }),     // fails
                parent.RemoveDiv();      // works 
            } else {                     // works 
                alert(data);           // works 
            } 
        }
    });
viraladmin
New Member
New Member
Posts: 9
Joined: Tue Jan 17, 2017 7:38 am

Post by viraladmin »

I do believe to the bug tracker it is. Thank you.
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

Locked