HTML hyperlink to a servoy method

Hi,
This is the situation, i have a HTML field in my login form that has an hyperlink wich i want to link to a method of that form. Is this possible? how can i do this?

Thanks

Hi,

You can call methods via an href like so:

<a href="javascript:myLocalFormMethod()">Click me!</a>

Or when you want to use a global method you use the following syntax:

<a href="javascript:globals.myGlobalMethod()">Click me!</a>

Thanks a lot for that quick reply robert!