Guest User

Untitled

a guest
Jan 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $(document).on('focus', '.uiopis', function() {
  2. $(this).removeClass("textareaBlur").addClass("textareaFocus");
  3. }).on('blur', '.uiopis', function() {
  4. $(this).removeClass("textareaFocus").addClass("textareaBlur");
  5. });
  6.  
  7. <div>
  8. <form>
  9. <textarea class="uiopis" id="os{{ us.id }}" name="os{{ us.id }}">{{ us }}</textarea>
  10. </form>
  11. </div>
  12.  
  13. $('.uiopis').on('focus', function() {
  14. $(this).removeClass("textareaBlur").addClass("textareaFocus");
  15. }).on('blur', function() {
  16. $(this).removeClass("textareaFocus").addClass("textareaBlur");
  17. });
Add Comment
Please, Sign In to add comment