December 2019
Intermediate to advanced
528 pages
11h 19m
English
The chat section allows the user to type a message and see what has been typed:
<div id="chatPanel" class="container" style="display: none"> <div class="row"> <div class="col-md-2"> <label for="message" class="form-label"> Message: </label> </div> <div class="col-md-4"> <input id="message" type="text" class="form-control" /> </div> <div class="col-md-6"> <button class="btn btn-info" onclick="sendMessage()"> Send </button> </div> </div> <div id="historyPanel" style="display:none;"> <h3>Chat History</h3> <div class="row"> <div class="col-md-12"> <div id="chat" class="well well-lg"></div> </div> </div> </div> </div>
The following elements allow our user to type a message (input) and post it to the server (the event button for sendMessage ...