[jQuery] Re: missing ( before formal parameters

2008-03-05 Thread Erik Beeson
> > missing ( before formal parameters > > $("#postcode").change(function{$("#town").val(zipToCityHash.$("#postcode").val()... > Also, I see what you're trying to do there, but you can't access object properties like that. You probably want something like: $("#postcode").change(function() { $("#t

[jQuery] Re: missing ( before formal parameters

2008-03-05 Thread Rick
change(function{$("#town"). >>> change(function(){$("#town"). > missing ( before formal parameters > $("#postcode").change(function{$("#town").val(zipToCityHash.$("#postcode").val()... >