Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. //Verifica se o tipo de produto selecionado é o calcário
  2. if (productData.product_type_id == 1) {
  3.  
  4. $form.find('.liming-method-cb').removeClass('hide');
  5.  
  6. //Verifica se o método V% foi selecionado
  7. if (productData.liming_method) {
  8.  
  9. $form.find('input[name="liming_method"]').prop('checked', true);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement