I have a bit of Javascript which exists in a PHP script. Here it is:
// start of JS script
print("<script type=\"text/javascript\"> <!--\n");
print("function storeData()");
print("{");
print("pos_index = ff_getElementByName('selectFormField').selectedIndex;");
for ($i = 0; $i < count($rows); $i++)
{
$offsetIndex = $i + 1; // allow for "Please make a selection"
$f01 = $rows[$i]->username;
$f02 = $rows[$i]->email;
print("if (pos_index == $offsetIndex) {populatefields (\"$f01\", \"$f02\");}");
}
print("}");
print("\n//--> </script>");
// end of JS script
It is not functioning as it should. Is there anything which stands out as being incorrect from the formatting?
As noted in the comments below, the populateFields() function is a call to a built in function for a third party component in Joomla. Here is the code:
function ff_SimpleSelect_init()
{
} // ff_SimpleSelect_init
function populateFields(f01, f02)
{
ff_getElementByName('formField_01').value = f01;
ff_getElementByName('formField_02').value = f02;
}
The idea is that when the user selects a value from a drop down menu, then the other form entries updated with the username and email values associated with that user id.


populateFields()looks like, to begin with. – alex Feb 13 at 4:56populateFields()info to the question. – Presto Feb 13 at 5:04