0
Hello, I have a function that works perfectly in javascript use an ajax when clicking the button to send my data, only now instead of clicking the button, I want to change for when the person marks the checkbox, he should perform the function in the same way, It just doesn’t work at all. If you can help me thank you. I tried to do so:
var addProduto = function(){
//termos é o nome do meu checkbox
if (document.getElementById('termos').checked) {
var id_produto = $(this).attr('data-id');
$.ajax({
type: 'post',
url: url_painel +'carrinho/add',
data: {id:id_produto},
dataType: "JSON"
}).then(function(res){
if (res.erro == 0) {
alert ('produto adicionado com sucesso');
} else{
alert(res.msg);
}
}, function(){
alert('Erro');
});
} else{
alert('Você precisa aceitar os termos e uso de serviços antes de continuar');
}
}
It works with :
$('.btn-add-produto-carrinho').on('click', function(){
But not with checkbox. If you can help me thank.
Vlw by help tb friends.
– Ragnar