Description
]I am getting the below exception when i try to invoke a javascript call from an android application that uses PhoneGap.
Stacktrack error:
here is my .jp file
[CODE]
<!-- register -->
function register(toggle){
var e = toggle;
var value = e.options[e.selectedIndex].value;
console.info(toggle);
console.info(value);
if (value == "on"){
window.WRAPPER.register();
}else if(value == "off"){
window.WRAPPER.deregister();
}
}
<!-- send -->
function send(message){
console.info('sending message');
console.info(message);
window.WRAPPER.send(message);
}
<!-- recieve -->
function recieve(msg){
console.info('recieving message');
console.info(msg);
document.getElementById("textarea1").innerHTML = messages;
}[/CODE]
Here is my android code that creates a javascript:functionName() string and loads it to the webView
[CODE] String text = "hello";
String javaScript = "javascript:recieve(\'"+text+"\')";
Log.d("TAG", javaScript);
loadUrl(javaScript);[/CODE]

Explanation & Answer

Thank you for the opportunity to help you with your question!
In most cases, the discipline is self-governed by the entities which require the programming, and sometimes very strict environments are defined
