Guest User

Untitled

a guest
Jun 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. var sp;
  4.  
  5. function setPolicy(){
  6.  
  7. sp = document.getElementById('policy').value;
  8.  
  9. if(sp != "")
  10. alert("You entered: " + sp)
  11.  
  12. else
  13. alert("Would you please enter some text?")
  14. }
  15.  
  16. </script>
  17.  
  18. input type="text" id='policy' size="15" tabindex = "1" onblur="setPolicy()"
Add Comment
Please, Sign In to add comment