jQuery – Automatic event trigger does not **really** check my form

// Check .forhandlerRadio:first jQuery 1.6+
jQuery( ".forhandlerRadio:first-child" ).prop( "checked", true );

// Check .forhandlerRadio:first jQuery 1.5.x and below
jQuery('.forhandlerRadio:first-child').attr('checked', true);