문제

Basically the question is in title.

Problem:

Some web sites add classes/ids when you click/hover etc... on it.

Is there a way to prevent this action?

Is there a good way to do that? After long googling I did not find anything that is well done.

도움이 되었습니까?

해결책

You could use jquery's off to do this:

$("*").off("click").off("mouseover").off("hover");

That will remove practically every mouse event from the page. It would need to be made into an extension if you want to automatically run it on every page.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top