Advertisement
Guest User

Untitled

a guest
May 27th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('[id*=negotiation_plan_id]:hidden').on('change', function (){
  2.   if($(this).val() != ""){
  3.     $('.edit-negotiation-product').each(function() {
  4.       $(this).attr('data-confirm', "<%= I18n.t('messages.if_proceed_will_need_to_choose_plan_again') %>");
  5.     });
  6.     $('.destroy-negotiation-product').each(function() {
  7.       $(this).attr('data-confirm', "<%= I18n.t('messages.if_proceed_will_need_to_choose_plan_again') %>");
  8.     });
  9.     $('#add-negotiation-product').attr(
  10.       'data-confirm',
  11.       "<%= I18n.t('messages.if_proceed_will_need_to_choose_plan_again') %>"
  12.     );
  13.   }else{
  14.     $('.edit-negotiation-product').each(function() { $(this).removeAttr('data-confirm'); });
  15.     $('.destroy-negotiation-product').each(function() { $(this).removeAttr('data-confirm'); });
  16.     $('#add-negotiation-product').removeAttr('data-confirm'); }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement