Here's my javascript function code:

  function addRecipient()
  {
          alert("Entering addRecipient function!")
          var list = document.getElementById('recipientlist');
          var rlist = list.value;
          var reciever = document.getElementById('recipient');
          rlist = rlist + receiver.value + ", ";
          reciever.value = "";
  }


I get the alert box just fine, but nothing seems to happen after that.
So what's wrong with the code as is and do I need to call some other
method to refresh the browser window to show the results of my
javascript having run, in order to see my screen change?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to