User: Markhurd/common.js

(It's there in the debugger...)
(Done for my purposes...)
Line 4: Line 4:
   if(wgCanonicalSpecialPageName == 'ConfirmAccounts')
   if(wgCanonicalSpecialPageName == 'ConfirmAccounts')
   {
   {
     alert('Still here 1.');
     $('#submitSpam').click(function() {
    var ss = $('#submitSpam');
    ss.click(function() {
            alert('here too 1.');
             document.getElementById('wpComment').style.display='none';
             document.getElementById('wpComment').style.display='none';
             this.form.elements[11].focus();
             this.form.elements[11].focus();

Revision as of 07:58, 20 April 2013

// when id="submitSpam" onclick="document.getElementById('wpComment').style.display='none';form.elements[11].focus()"

addOnloadHook(function () {
   if(wgCanonicalSpecialPageName == 'ConfirmAccounts')
   {
     $('#submitSpam').click(function() {
            document.getElementById('wpComment').style.display='none';
            this.form.elements[11].focus();
        });
   };
 });
Discuss this page