Hi,
I have a javascript function, I want it to be called programatically on init and later onClick event but its not getting called programatically but works ok with onClick.
The example would be:
function init() {
a();
}
init()
is called on initialization which should call a()
but thats not happening!