Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Pbjman

  1. P

    JavaScript New and lost. How does this work?

    <form action="initial.html" method="post" id="signin"> <input type="text" id="name" name="name" placeholder="Enter your fullname" /> <input type="text" id="handle" name="handle" placeholder="Enter your Handle" /> <input type="hidden" id="rank" name="rank" placeholder="CommanderI" /> <input...
  2. P

    JavaScript New and lost. How does this work?

    <script type="text/javascript"> const form = document.getElementById('signin'); let myUsername = document.getElementById('name'); let myHandle = document.getElementById('handle'); let myRank = document.getElementById('rank'); let myMoney = document.getElementById('money')...
  3. P

    JavaScript New and lost. How does this work?

    I added alert to the script and nothing popped up so I guess its not getting the info.
  4. P

    JavaScript New and lost. How does this work?

    initial.html looks like it should I was expecting to see the info displayed on the initial.html page for testing once the form was submitted I will see the debug console and see what I come up with.
  5. P

    JavaScript New and lost. How does this work?

    Yes I have and I had no output that I know of?
  6. P

    JavaScript New and lost. How does this work?

    <form action="/initial.html" method="post" id="signin"> <input type="text" id="name" name="name" placeholder="Enter your fullname" /> <input type="text" id="handle" name="handle" placeholder="Enter your Handle" /> <input type="hidden" id="rank" name="rank" placeholder="CommanderI" /> <input...
Back
Top Bottom