Basically Adblocker is used to hide the ads in the website. We can find adblocker existed / installed or not by using javascript.
Below is the code for detect adblocker in browser by using javascript.
<html> <head> <title>Check Adblocker existed Using Javascript</title> <script> window.onload = function() { setTimeout(function() { if (typeof(window.google_jobrunner) === "undefined") { alert("adblocker is existed"); }else{ alert("no adblocker found."); } }, 3000); }; </script> </head> </html>
You might also like:
How To Get Your Blogs Posts Using Blogger API30-07-2017 blogger api json php |
How to make an http request in node js14-03-2017 http module node js |
Convert Time 24 hrs to 12 hrs format In javascript12-03-2017 date javascript 12hrs convert |
Using slice remove last two characters from given string07-03-2017 slice remove |
How to get drop down value when drop down change using javascript27-02-2017 onchange events dropdown javascript functions |