Active
Project:
AHAH Forms Framework
Version:
5.x-1.5-5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Aug 2008 at 18:58 UTC
Updated:
21 Jul 2009 at 21:32 UTC
A small correction that make works the ahah js request (in drupal 5.10) for me
around line 42
// push the name/value of the activated element into the params
substitute
params.push( {name: $(element_id).name(), value: $(element_id).val()} );
with
params.push( {name: $(element_id).attr("name"), value: $(element_id).val()} );
because $(element_id).name() give error because is not a function.
bye lu
Comments
Comment #1
starbow commented