< script > jQuery( document )
.ready( function( $ ) {
$( '#main > form > table > tbody > tr > td.checkit > input' )
.each( function( i, obj ) {
console.log( obj );
$( obj )
.after( '
' );
$( obj )
.attr( {
name: 'checkbox_' + i,
id: 'checkbox_' + i
} );
} );
} );
jQuery( document )
.ready( function( $ ) {
$( '#g-recaptcha-response ' )
.after( '
' );
} );