User: Markhurd/common.js

Markhurd (talk | contribs)
Trying to get submitSpam to focus the submit button...
(No difference)

Revision as of 06:16, 20 April 2013

// when id="submitSpam" onclick="document.getElementById('wpComment').style.display='none';form.elements[11].focus()"
$(document).ready(function() {
        $('radio.submitSpam').click(function() {
            document.getElementById('wpComment').style.display='none';
            form.elements[11].focus();
        });
    });