Skip to content

Instantly share code, notes, and snippets.

@cihadturhan
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cihadturhan/aad14c0921a7338f94f5 to your computer and use it in GitHub Desktop.
Save cihadturhan/aad14c0921a7338f94f5 to your computer and use it in GitHub Desktop.
FB remove any suggestion
setInterval(function(){
var el = document.querySelectorAll('.ego_x.uiCloseButton.uiCloseButtonSmall')[0];
var evObj = document.createEvent('Events');
evObj.initEvent('click', true, false);
el.dispatchEvent(evObj);
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment