Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <form class="article-footnote-form footnote-form" style="margin-top:10px" >
  2. <div class="form-group row">
  3. <div class="col-md-9">
  4. <textarea class="form-control" name="footnote" rows="3" autofocus></textarea>
  5. </div>
  6. <div class="col-md-3">
  7. <button class="btn btn-primary" type="submit" id="articleFootnoteBtn">Add Annotation</button>
  8. </div>
  9. </div>
  10. </form>
  11.  
  12. $(".article-footnote-form").submit(function(e){
  13. e.preventDefault();
  14.  
  15. $("#textareaId").keypress(function (e) {
  16. if(e.which == 13 && !e.shiftKey) {
  17. $(this).closest("form").submit();
  18. e.preventDefault();
  19. return false;
  20. }
  21. });
Add Comment
Please, Sign In to add comment