Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <script>
  2. function f(){
  3. var x = input1.value
  4. if(x==""){
  5. p1.style.color="red"
  6. p1.innerHTML="WPISZ HASŁO"
  7. }
  8. else if(x.search("[0-9]")>=0 && x.length>6){
  9. p1.style.color="green"
  10. p1.innerHTML="DOBRE"
  11. }
  12. else if(x.search("[0-9]")>=0 && x.length>=4 && x.length<=6){
  13. p1.style.color="blue"
  14. p1.innerHTML="ŚREDNIE"
  15. }
  16. else {
  17. p1.style.color="yellow"
  18. p1.innerHTML="SŁABE"
  19. }
  20. }
  21. </script>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement