Simple Animation not Working

Simple Animation not Working

Hi guys I am using a simple jquery fadeIn and slideDown effect on a click event but for some reason it doesn't work here's my code 

  1. <form id="Form1" method="POST" action="">

  2. <p>
  3. <label for="moneyInAccount">Enter the amount you have in your account</label>
  4. <input type="number" step="any" name="moneyInAccount" placeholder="0.00" >
  5. <input type="submit" name="moneyInAccountBtn" value="Submit">
  6. </p>


  7. </form>

  8. <p id="moneyInAccountParagraph"></p><br>
the jquery code is as follows
  1. $("moneyInAccountParagraph").hide();

  2. $("input[name=moneyInAccountBtn]").on("click", function(e){
  3. e.preventDefault();
  4. if($("input[name=moneyInAccount]").val() != 0) 
  5. {
  6. $("#moneyInAccountParagraph").text("Money currently in your account R " +                         $("input[name=moneyInAccount").val()).slideDown(1000);
  7. $("#Form1").fadeOut(1000);
  8. }
  9. });
This code is done in the document ready function and the fadeOut effect works fine, it's the #moneyInAccountParagraph effect that doesn't work for some reason please assist