1
I’m working with radio type button and I can’t fire a Rigger. Can someone help me solve?
$("input[name='estimate_method']").on('change', function() {
$(this).prop("checked", true);
$("input[name='do']").trigger("click");
});
Picture of the situation ... if it works I’ll hide this Update Total and send a Trigger on top of it. The html button is:
<button type="submit" class="button" name="do" value="Atualizar Total">
<span>
<span>Atualizar Total</span>
</span>
</button>
He goes inside the on("change") but not trigger the action on the button. The goal is, the moment I click a radio, it fire the Trigger on the Update Total.
You have helped me!! Thank you.
– Marcos Vinicius