Guest User

Untitled

a guest
Oct 21st, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $(".editable").editable( $('form').attr('action'), function(value, settings, parent_id) {
  3.       console.log(parent_id);
  4.       console.log(value);
  5.       //console.log(settings);
  6.  
  7.       indicator : "<img src='img/indicator.gif'>",
  8.       type   : 'textarea',
  9.       submitdata: function(){ return { parent_id: this.parentNode.getAttribute('id')} },
  10.       select : true,
  11.       submit : 'OK',
  12.       cancel : 'cancel',
  13.       cssclass : "editable"
  14.  
  15.       return(value);
  16.     });
  17.   });
Add Comment
Please, Sign In to add comment