Ok Estoy tonto o algo así.
Usando una respuesta de este post:
http://stackoverflow.com/questions/4...utton-on-click
Está esta opción
http://jsfiddle.net/1bfsnzn9/
Sí funciona ahí, pero al ponerlo en un archivo html no funciona...
Código HTML:
Ver original<!DOCTYPE html>
<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
$('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;
});
<input type="radio" id="Uno" name="Opciones" /><label for="Uno">Texto
</label> <input type="radio" id="Dos" name="Opciones" /><label for="Dos">Texto
</label>
¿Alguna idea?