WDV221 Intro Javascript
IF Statements and Validations
Please complete the following exercises on this page. When complete post this page to your server. Make a link in your WDV221 homework page for this assignment.
Include a comment in each script with the exercise number and a description of what the script is supposed to do.
Compare Names Instructions:
- Create a function called compareNames( ).
- The function will compare the two input values from the form above.
- The comparison should be case insensitive.
- The results should display "Same" or "Different".
- The input fields should be validated. The validations should not allow an empty field.
- Use a span element and its .innerHTML property to display the results.
- Provide a reset function that will reset the form and results.
- Place functions in an external script file called compareFunctions.js.
Compare Numbers Instructions:
- Create a function called compareNumbers( ).
- The function will compare the two input values from the form above.
- The input fields should be validated. The validations should not allow an empty field, the input must be numeric and it should only allow integers.
- The function should display the larger of the two numbers OR "Equal" if both values are the same.
- Use a span element and its .innerHTML property to display the results.
- Provide a reset function that will reset the form and results.
- Place functions in an external script file called compareFunctions.js.