0
I’m trying to figure out what happens after clicking a Ubmit button on one page, to do exactly the same thing on another. On the page I’m looking at and the code is written this:
<button onclick= function (ev) {
ev = ev || window.event;
r = Nwa_SubmitForm("forme1c43235_weblogin","ID_forme1c43235_weblogin_submit");
ev.returnValue = r;
return r;
}>Click me</button>
It seems that it is calling the function Nwa_submitform, passing as parameter the id of the form and another parameter that I do not know what it is. The "Ev" the function receives as parameter is the click of the button (the event)?
I know the question is a little vague. But could someone please try to start helping me understand what this code is doing? Or where can I start trying to figure it out? Obriagda