Posts by Godrix • 157 points
12 posts
-
0
votes2
answers791
viewsA: javascript paste command
Currently the best way to interact with the user’s transfer area is through the browser’s Clipboard API, through asynchronous methods such as this demonstrated in the documentation of the Mozilla.…
-
-2
votes2
answers35
viewsA: Set the first page to be loaded by the browser
You can set a rule in the file .htaccess of your server Example: DirectoryIndex themes/original/index.php
-
0
votes1
answer47
viewsQ: Movement of HTML page
When I click on an anchor like <a href="#um_id">clique aqui</a>, that has a #ID on href, it defaults to move up to the part that has this id as a bookmark. How I would discount this…
-
1
votes1
answer168
viewsQ: Return in Promise
Hello I have a function that brings the ip in httpbin, however it is a file and I can’t put the result in a Return, only when it runs with console.log another direct mode: Funciana like this...…
-
2
votes1
answer335
viewsA: Req and Res no nodejs, problem in understanding arguments
In this case the express function uses the HTTP protocol, which is based on reqlust and resput, then the req is an object that contains information about the event’s HTTP request, header…
-
0
votes1
answer56
viewsA: Assign ajax query to a variable
var array = []; array = JSON.parse(data); with this is for the return of ajax go to an array
-
2
votes5
answers838
viewsA: Is it possible to integrate GIT with some task manager?
You can use Trello which is great + bitbucket which gives you free private repositories.
-
1
votes2
answers377
viewsA: How to use the <audio> tag in Phonegap?
The tag <audio src="sound/som.mp3" autoplay></audio> only works on android 5.x by using webview as a separate application, in the previous verses have to do the way it was answered above…
apache-cordovaanswered Godrix 157 -
1
votes1
answer588
viewsA: How to make a hybrid application for Android run in the background?
So, I imagine that Voce is using phonegap/Cordova, to create the app you will need to run your app in the background and use Push Notifications, which is configured in the app and google Dashboard.…
-
0
votes2
answers104
viewsA: Tool to measure the performance of an application on Html5 on an android platform
Here on this site you know what mobile browsers support and can have a basis of what you can do: https://html5test.com/ Already check the performance will be kind of difficult, because each Android…
-
1
votes1
answer410
viewsA: Cordova/Phonegap - WP8 - Problems loading external images(URL)
Usually, for you to have access to external images through the tag img make sure you put <access origin="*" /> in the archive config.xml Already in the case of img in local folder, on Android…
-
5
votes2
answers2501
viewsA: How to style only an excerpt of a text?
You can use the Html5 Mark tag and customize its color, the mark tag is used to highlight a snippet and help with SEO <style> mark { background-color:#009933; font-weight: bold; }…