Posts by Bruno Ravanhani • 11 points
5 posts
-
0
votes2
answers615
viewsA: How do I create a connection to an external db with a Phonegap app?
Hello, a very cool option that leaves transparent for you this part of XHR and ajax and has a whole back-end at your disposal is the Firebase, a google service that can be accessed with javascript.…
-
0
votes3
answers404
viewsA: Ajax Requests - Tips
One option, if it is not so much data is to bring everything at once, if it is too much data, depending on the user’s connection, it may take ai yes it compensates to make several requests. I had a…
-
0
votes1
answer106
viewsA: Error in function Ordova and Angularjs
Hello, If navigator.connection is undefined probably you forgot to add the connection plugin in Cordova: https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-network-information/…
-
0
votes5
answers1479
viewsA: Input javascript text only
Hello, I believe the error is logical, in your if. Try to put it like this: if ((tecla >= 48 && tecla <= 57) || (tecla === 8))
javascriptanswered Bruno Ravanhani 11 -
0
votes1
answer43
viewsA: Is countdown on the PLACEHOLDER possible?
With jQuery it gets very easy, look here an example below: $("#btnClick").click(function(){ var cont = 10; var interval = setInterval(function(){ cont--; $("#myInput").attr("disabled", true );…