Advertisement
Guest User

Untitled

a guest
May 30th, 2016
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. if (($("element").data('bs.modal') || {}).isShown) {
  2. $('#action-description').val('Update');
  3. } else {
  4. $('#action-description').val('Create');
  5. }
  6.  
  7. <input type="text" id="action-description" name="action-description" value="">
  8.  
  9. $('#modalElement').on('hidden', function(){
  10. $('#action-description').val('Create');
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement