Guest User

Untitled

a guest
Dec 21st, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <div class="alert alert-danger" id="errorBox" style="display:none; padding:15px;">
  2. </div>
  3.  
  4. <script type="text/javascript">
  5. $(document).ready(function () {
  6. $('#signIn').submit(function (e) {
  7. if ($('#tbxUsername').val().length == 0) {
  8. $('#errorBox').html('<strong>Error:</strong> You need to enter your username!');
  9. $('#errorBox').hide().show('shake');
  10. return false;
  11. } else if ($('#tbxPassword').val().length == 0) {
  12. $('#errorBox').html('<strong>Error:</strong> You need to enter your password!');
  13. $('#errorBox').hide().show('shake');
  14. return false;
  15. }
  16. });
  17. });
  18. </script>
Add Comment
Please, Sign In to add comment