Hello,
3 pages, page navigation via 3 submit elements and the following code for each submit element on each page:
Page One:
function ff_a1_action(element, action)
{
switch (action) {
case 'click':
ff_switchpage(1);
break;
default:;
} // switch
} // ff_a1_action
function ff_a2_action(element, action)
{
switch (action) {
case 'click':
ff_switchpage(2);
break;
default:;
} // switch
} // ff_a2_action
function ff_a3_action(element, action)
{
switch (action) {
case 'click':
ff_switchpage(3);
break;
default:;
} // switch
} // ff_a3_action
page two:
function ff_b1_action(element, action)
{
switch (action) {
case 'click':
ff_switchpage(1);
break;
default:;
} // switch
} // ff_b1_action
function ff_b2_action(element, action)
{
switch (action) {
case 'click':
ff_switchpage(2);
break;
default:;
} // switch
} // ff_b2_action
function ff_b3_action(element, action)
{
switch (action) {
case 'click':
ff_switchpage(3);
break;
default:;
} // switch
} // ff_b3_action
and so on.
switching to page two and three and between them is working. switching to page one not.
Any idea why not?
Thanky you again in advance for your help.
Regards,
Rolf