Guest User

Untitled

a guest
Feb 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // Edit in Place
  2. $(".edit_area").editable("/photos/uphate", {
  3. id : $(this).attr('id') + "cow",
  4. type : 'textarea',
  5. cancel : 'Cancel',
  6. submit : 'Save',
  7. indicator : "<img src='/images/indicator.gif'>",
  8. tooltip : 'Click to edit...',
  9. callback : function(value, settings) {
  10. console.log($(this).attr('id'));
  11. console.log(value);
  12. console.log(settings);
  13. }
  14.  
  15. });
Add Comment
Please, Sign In to add comment