User:Technical 13/Signature

@

Welcome!

Chances are that you are here because you don't like the way you see my signature.
Here are some methods you can use to see it as I intended it on your local screen!
My "default" visible signature is:

In order to do this, you will be editing your personal JavaScript page, which you can find → common.js (recommend opening in new tab).

  • Create a comment to indicate where the code used for my signature starts:
/* Technical_13's actual signature */
  • Let the JavaScript file know that you ONLY want this code to apply to your new "Technical_13's actual signature" section:
$('span[class="ShoeSig"]').each(function() {
  • Now you get to make your first choice of how like my original you want yours to be. You can choose any ONE of the following options for what you will see as a link to my user page:
  • View the link as my user name:
    this.innerHTML = this.innerHTML.replace('>T13<', '>Technical 13<');
  • View the link as my nickname:
    this.innerHTML = this.innerHTML.replace('>T13<', '>ShoeMaker<');
  • Expand or eliminate the link to my contributions:
  • Expand:
    this.innerHTML = this.innerHTML.replace('>C<', '>Contributions<');
  • Eliminate:
    this.innerHTML = this.innerHTML.replace('<a href="/wiki/Special:Contributions/Technical_13" title="Special:Contributions/Technical 13">C</a>', '');
  • The next choice is if and how you want to see my separating •
  • If you chose to eliminate the link to my contributions above, or intend to eliminate the link to my talk page below:
    this.innerHTML = this.innerHTML.replace('&nbsp;•&nbsp;', '');
  • Otherwise, to make it look as intended:
    this.innerHTML = this.innerHTML.replace('•', '<span style="text-decoration: blink; color: #FA88AF;">•</span>');
  • Expand or eliminate the link to my internal user talk page or link to my home wiki talk page:
  • Expand internal:
    this.innerHTML = this.innerHTML.replace('>M<', '>Message<');
  • Eliminate:
    this.innerHTML = this.innerHTML.replace('<a href="/wiki/User_talk:Technical_13" title="User talk:Technical 13" class="mw-redirect">M</a>', '');
  • Link to my home wiki talk page (much better chance of getting a swift response as I watch it daily):
    this.innerHTML = this.innerHTML.replace('<a href="/wiki/User_talk:Technical_13" title="User talk:Technical 13" class="mw-redirect">M</a>', '<a target="_blank" rel="nofollow" class="external text" href="http://ddowiki.com/page/User_talk:Technical_13">Message</a>');
  • Get rid of the link and text to this page, since you will no longer need it:
    this.innerHTML = this.innerHTML.replace('• <a href="/wiki/User:Technical_13/Sig" title="User:Technical 13/Sig" class="mw-redirect">Click to learn how to view this signature as intended</a> ', '');
  • The last step is to close your new "Technical_13's actual signature" section:
})
/* Technical_13's actual signature */
  • Your final code to make your rendition of my signature be as I originally intended should look like:
/* Technical_13's actual signature */
$('span[class="ShoeSig"]').each(function() {
    this.innerHTML = this.innerHTML.replace('>T13<', '>ShoeMaker<');
    this.innerHTML = this.innerHTML.replace('>C<', '>Contributions<');
    this.innerHTML = this.innerHTML.replace('•', '<span style="text-decoration: blink; color: #FA88AF;">•</span>');
    this.innerHTML = this.innerHTML.replace('<a href="/wiki/User_talk:Technical_13" title="User talk:Technical 13" class="mw-redirect">M</a>', '<a target="_blank" rel="nofollow" class="external text" href="http://ddowiki.com/page/User_talk:Technical_13">Message</a>');
    this.innerHTML = this.innerHTML.replace('• <a href="/wiki/User:Technical_13/Sig" title="User:Technical 13/Sig" class="mw-redirect">Click to learn how to view this signature as intended</a> ', '');
})
/* Technical_13's actual signature */