Hi there, here's the code I'm currently using:
<form action="javascript:ReverseDisplay('w1')">
I have a submit button and such, and it works fine. The ReverseDisplay is a function that I've defined, and the w1 is the name of a DIV class that I've created.
I was wondering, could I make the function work for multiple DIV classes at the same time? Something like...
<form action="javascript:ReverseDisplay('w1', 'w2')"> or
<form action="javascript:ReverseDisplay('w1, w2')">
Obviously both of those are incorrect since it doesn't work, but if someone could point me in the right direction that'd be great! Thanks in advance
<form action="javascript:ReverseDisplay('w1')">
I have a submit button and such, and it works fine. The ReverseDisplay is a function that I've defined, and the w1 is the name of a DIV class that I've created.
I was wondering, could I make the function work for multiple DIV classes at the same time? Something like...
<form action="javascript:ReverseDisplay('w1', 'w2')"> or
<form action="javascript:ReverseDisplay('w1, w2')">
Obviously both of those are incorrect since it doesn't work, but if someone could point me in the right direction that'd be great! Thanks in advance
