I m creating a web application using object oriented javascript.I m having one class is having a function.
var Section = function () { this.Test=function(){} }
.
From <a href="#" />
i want to call the function Test()
.
<a href="#" onclick="new Section() Test()"/>
.
I m trying like this it was not working.
Is there any other option is there to call a function from control? Please suggest me.