disable web pages including apple stuff =/


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var containsAppleStuff = $("body").html().search(new RegExp("apple|mac", "i"));
  2. if(0 < containsAppleStuff) { $("body").css('display','none'); }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.