Hola
te falta indicarle que se ejecute cuando haya sido cargado todos los elementos de la pagina:
Código Javascript
:
Ver original$(document).ready(function(){
$('input[type=radio]').on('mousedown', function(e){
var wasChecked = $(this).prop('checked');
this.turnOff = wasChecked;
$(this).prop('checked', !wasChecked);
});
$('input[type=radio]').on('click', function(e){
$(this).prop('checked', !this.turnOff);
this['turning-off'] = !this.turnOff;
});
});