View jquery code in an ID

0

Gallery need help with my code, what am I 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)
    } 
};
    
asked by anonymous 11.04.2018 / 14:48

1 answer

0

To add code in text format within an element, you need to convert it to String or use Template String :

To use the Template String , simply enclose the code with the accent grave ' , for example:

$("#codigo").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)
  }
}');
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><pre><codeid="codigo"></code></pre>
    
11.04.2018 / 15:14