User: Markhurd/common.js
< User:Markhurd (It's there in the debugger...) |
(Done for my purposes...) |
||
Line 4: | Line 4: | ||
if(wgCanonicalSpecialPageName == 'ConfirmAccounts') | if(wgCanonicalSpecialPageName == 'ConfirmAccounts') | ||
{ | { | ||
$('#submitSpam').click(function() { | |||
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();
});
};
});