1<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.js"></script>
1Functions that arent need to load at the beggining of the page, should have
2defer, loading the scripts correctly, example:
3<script type="text/javascript" src="~/lib/jquery/dist/jquery.min.js"></script>
4<script type="text/javascript" src="~/lib/jquery-validation/dist/jquery.validate.min.js" defer></script>
5<script type="text/javascript" src="~/EmailValidation.js" defer></script>
6