0
Gallery I need help with my code, what I’m doing wrong?
onFinish: function () { <br><br>
console.log('registrationStoreId')
console.log(pmMVCHelpers.user.getProperty('registrationStoreId'));
var registrationStoreId = $("#loja").text(
if($('registrationStoreId').val() = "17"){
.text(NA LOJA UM EM ATÉ <br> 05 DIAS ÚTEIS)
}
else if ($('registrationStoreId').val() = "34"){
.text(NA LOJA DOIS EM ATÉ <br> 05 DIAS ÚTEIS)
}
else ($('registrationStoreId').val() = " "){
.text(EM ATÉ 15 DIAS ÚTEIS)
}
};
What’s wrong? You get an error?
– Roberto de Campos
Don’t put the
if
within the method.text
.– Valdeir Psr
You are wanting to send a text to
div
depending on theif
?– Sam