In visual studio tools for apache corodova when try to execute any javascript there is not showing any result in ripple but my code is ok there is no error..
show this messege..
code:-32000
message:Debugger agent is not enabled
The program '[1] http://localhost:4400/index.html?enableripple=cordova-3.0.0-NexusGalaxy: WebKit' has exited with code -1 (0xffffffff).
my code is ...
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
width: 100px;
height: 100px;
background: red;
;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
from {}
to {}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mynewmove {
from {}
to {}
}
@keyframes mymove {
from {}
to {}
}
@keyframes mynewmove {
from {}
to {}
}
</style>
</head>
<body>
<button onclick="myFunction()">Try it</button>
<div id="myDIV"></div>
<script>
function myFunction() {
document.getElementById("myDIV").style.WebkitAnimation = "mynewmove 4s 2"; // Code for Chrome, Safari and Opera
document.getElementById("myDIV").style.animation = "mynewmove 4s 2";
}
</script>
</body>
</html>
plz help me anyone to solve this issue..