View Single Post
  #2 (permalink)  
Old 01-12-05, 12:51 PM
The Omega The Omega is offline
Newbie Coder
 
Join Date: Jan 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Code:
<script language="JavaScript"> 
function selectAllOptions(obj) {
	for (var i=0; i<obj.options.length; i++) {
		obj.options[i].selected = true;
		}
	}
 </script>
Code:
onClick=""selectAllOptions(document.memoform.frmMemoRecipients)""

After not recieving a reply, I did a bit more searching and finally picked up a lead from a friend and from Snitz message board.... the above is the solution....
Reply With Quote