Exercise 3
Explanation
Cause
- The language attribute was included in the script tag:
<script language="javascript" type="text/javascript">
- The validator says, there is no attribute "language".
- The language attribute was included in the script tag:
Correction
- Do not use the language attribute in the script tag. Use the type attribute:
<script type="text/javascript">
- Do not use the language attribute in the script tag. Use the type attribute:
Review
