- 13" Macbook Pro 3.3 GHz i7 (late 2016)
- Microsoft Surface Book (2016)
- Acer K272HUL 27" monitor 2560 x 1440
- Ergotron monitor arm
- Perixx PERIMICE-712B
| // Shorthand for $(document).ready(); | |
| $(function(){ | |
| $("#next_frame").click(nextSlide) | |
| $("#previous_frame").click(prevSlide) | |
| }); | |
| function nextSlide(){ | |
| $('.frames').animate({ | |
| "left": "-=360px"}, | |
| "slow"); |
| // shorthand for $(document).ready(); | |
| $(function(){ | |
| $("form[name='sign_up']").submit(validatePassword); | |
| }); | |
| function validateEmail(){ | |
| var email = $("[name='email']").val() | |
| var email_validate = /\w+\@.+\.\w{2,}/ | |
| if (email_validate.test(email) == false ){ |
| //------------------------------------------------------------------------------------------------------------------ | |
| // YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here. | |
| //------------------------------------------------------------------------------------------------------------------ | |
| //------------------------------------------------------------------------------------------------------------------ | |
| // DRIVER CODE: Do **NOT** change anything below this point. Your task is to implement code above to make this work. | |
| //------------------------------------------------------------------------------------------------------------------ |