topical media & game development

talk show tell print

professional-ria-02-Angelas-JavaScript.js / js



  function addOrder() {
          var orderTextBox = document.getElementById('order');         
          var orderText = orderTextBox.value;
          orderTextBox.value = "";
          
          var newOrder = document.createElement('li');
          var newOrderText = document.createTextNode(orderText);
          newOrder.appendChild(newOrderText);   
                                           
          var orderList = document.getElementById('order_list');
          orderList.appendChild(newOrder);
  }


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.