특정 링크의 변경 사항에 대한 도움말을 보려면 여기에서 질문해야한다고 들었습니다. 이미 몇 가지 주제를 살펴 보았지만 나에게 맞는 제안은 할 수 없습니다. <div class="validation_ticker">
모든 것을 그 안에 (모든 코드를 코드 상자에) :Greasemonkey - div 클래스 (절대 초보자) 제거
나는 제거 할
<div class="validation_ticker">
<div class="validation_ticker_align">
<div class="validation_ticker_icon"></div>
<div class="validation_ticker_msg" style="line-height:1.1em">
Is <a href="/account/editprofile">[email protected]</a> still your email address? Please <form action="/account/revalidate_email" method="post" id="revalidate_email" style="display: inline; margin: 0; padding: 0;"><button style="display: inline; border: 0; border-style: none; background: none repeat scroll 0 0 transparent; background-image: none; margin: 0; padding: 0; line-height: normal; list-style: none outside none; text-decoration: none; width: auto; height: auto; font-size: 13px; color: #ffff00" type="submit" value="click here">click here</button></form> to re-validate your account or <a href="/account/editprofile">change your address</a>.<br>
Not seeing email? Check your SPAM folder and mark as "NOT SPAM"!
<script type="text/javascript">
jQuery(function($) {
$('#revalidate_email').submit(function() {
$(this).ajaxSubmit(true);
return false;
});
});
그것은 화면 상단에 검증 배너입니다. 이 사이트는 전자 메일 확인을 정기적으로 원하지만 필자는 그 일에 너무 열중하지 않으며 종종 피싱에 대해서도 실수합니다.
EDIT2가 : 코드이 내가 가지고 올 한 것입니다 버전
작업으로 업데이트 내가 Ashkan에 의해 부여 된 조언에서 : 대답 모든 사람에게
// ==UserScript==
// @name Script Name
// @namespace namespace
// @include http://www.X.com/
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
$('.validation_ticker').remove();
감사합니다.
안녕하세요, 답장을 보내 주셔서 감사합니다. 부모 게시물을 수정했습니다. 좀 봐도 될까요? – AtotehZ
이 코드는 정확합니다. jQuery가 작동하지 않을 경우 스크립트에 추가되지 않습니다. jQuery를 참조 했습니까? 코드에 다음 줄이 있어야합니다 :'/ @require http : // ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js' –
그것은 매력처럼 작동했습니다. 술집은 없어 졌어. 도와 줘서 고마워. 나는 15 표를 지키지 않아 투표를 볼 수 없지만 투표를했다. 다른 사람들도 그렇게한다면 감사 할 것입니다. – AtotehZ