[Proto-Scripty] $F is returning the field ID instead of the field value

2009-06-11 Thread jhicks
I'm trying to do something I've done many time before, but I'm getting different results. I have a very simple call to $F('MyField') within a function where the html is input type=text id=MyField size=3 maxlength=3 / I'm doing an alert within the function call: alert($F('MyField'); which

[Proto-Scripty] Re: Getting checked checkbox values

2009-06-11 Thread jhicks
up going a different route that is working great. http://pastie.org/508742 Jeremy On Jun 11, 5:07 am, Alex McAuley webmas...@thecarmarketplace.com wrote: Updated your code to include if the checkbox is checked!! http://pastie.org/508323 HTH Alex - Original Message - From: jhicks

[Proto-Scripty] Re: $F is returning the field ID instead of the field value

2009-06-11 Thread jhicks
Never mind. I figured it out. My javascript code was within a PHP block and so the $ was getting interpreted as the beginning of a variable. :( On Jun 11, 11:38 am, jhicks jeremy.hi...@gmail.com wrote: I'm trying to do something I've done many time before, but I'm getting different results