Courses/Design & Technique-Essential Web Design/Q2/04

From Publication Station
Revision as of 12:20, 6 December 2015 by Andre (talk | contribs) (Created page with "=Examples - using Javascript and jQuery= ==user input== We can receive text user input from the user, using HTML forms and jQuery [https://api.jquery.com/submit/ .submit() li...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Examples - using Javascript and jQuery

user input

We can receive text user input from the user, using HTML forms and jQuery .submit() listener


<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html" charset="utf-8">
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<style>

form{width: 50%;}
input{padding: 6px; width:50%; border: 2px solid #ccc; margin-top: 1em; color: #000;}
input:focus{border: 2px solid yellow;  background-color: rgba(0, 0, 0, 0.75); color: white; font-weight: bold;}
input[type="submit"]{font-weight: bold; width: auto;  }
input[type="submit"]:focus{ color: yellow; background-color: rgba(0, 0, 0, 0.75);}
</style>
</head>
<body>
<h1>Tell me you name...</h1>
<form id="greeting">
  <input name="firstName" id="firstName" required="" placeholder="Your first name" type="text"><br>
  <input value="Send" type="submit">
</form>


<script>
    var firstName; // variable that will store user name
    $("form#greeting").submit(function(event){
        firstName = $('#firstName').val();
        console.log( $(firstName );

        event.preventDefault();
        $("#firstName").val(''); //reset $(input#firsName)
    })

</script>
</body></html>

What can we do by getting the user's text input?

  • address him/her by name.
  • ask him/her other questions. E.g. where are you?
  • store his/her answers