From 363ef9b19825350bd02ab5c1bfeb2e7e68a0b4ee Mon Sep 17 00:00:00 2001 From: Armen Vartan Date: Mon, 1 Dec 2014 15:19:49 -0500 Subject: [PATCH] js 1 --- javascript/1-get-primes/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/1-get-primes/README.md b/javascript/1-get-primes/README.md index f658fff..cf95efc 100644 --- a/javascript/1-get-primes/README.md +++ b/javascript/1-get-primes/README.md @@ -1,8 +1,8 @@ -####Get Prime Numbers Challenge +Get Prime Numbers Challenge +=========================== In the HTML file you'll find the normal template plus an input form. Have the input form accept a number from the user. When the form is submitted, have the function getPrimes take the number as an argument (num) and calculate all the prime numbers up to and including num. In typical fashion, use JQuery to have all the prime numbers append to the "#printout" div. Make sure they are wrapped in p tags for readability. Do not modify the HTML in any way. -