[Proto-Scripty] Re: how to pass question marks in fields using ajax updater

2010-01-29 Thread Tami
Here's what worked. I did this: var url = 'site.lasso?fuseaction=ajax.famMbr_nestedForm'; var target = 'ajax_famMbr_div'; var myAjax = new Ajax.Updater(target, url, {method:'get', parameters: {a: $F('member_nm'), b: $F('member_address'), c: $F ('member_ph'), d: $F('member_email'), e:

[Proto-Scripty] how to pass question marks in fields using ajax updater

2010-01-26 Thread Tami
I'm trying to do this (see below) and IF a field has a question mark in it then nothing is passed - an EMPTY field is submitted. How do I let users enter question marks in the fields on my nested form? Fields are member_nm, member_address, etc. Thanks in advance. function ajax_Add_famMbr()