How can I link these js function and js call to cordova(phonegap) project?
***index file***
here is js functions
<html>
<head>
<script>
function SetStart(ss) {
Start0 = ss;
Init();
}
function Init() {
//initialization
}
</script>
</head>
***.and js call in index file.***
<body>
<div id ="links">
<a href="javascript:SetStart(0)"><img src="img/abc.jpg"></a>
</div>
</body>
</html>