Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. login:<br><s:textfield name="login" id="login" required="true" cssStyle="width:287px; height:20px;" onblur="this.style.backgroundColor='#F7F5E9'" onfocus="this.style.backgroundColor='#FFFFFF'"/>
  2.  
  3. $(document).ready(function() {
  4.  
  5. var txtLogin = document.getElementById("login");
  6.  
  7. txtLogin.addEventListener('blur', event => {
  8. event.preventDefault();
  9. alert('Passei aqui!!!')
  10. txtLogin.focus();
  11. });
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement