Posts by Giordano Bruno • 131 points
10 posts
-
1
votes1
answer2130
viewsA: Add phonegap/Ordova plugin
To add a plugin just use the following command: [phonegap][cordova] plugin add <nome do plugin> Each plugin has its own methods and objects, so it is important to check before if it offers the…
-
1
votes3
answers1978
viewsA: Creation of a database for each user
I would say that the greatest performance villain is the server, not exactly the way the database(s) is structured. Regardless of the volume of data generated by each client, it is necessary to take…
-
2
votes2
answers73
viewsA: Audio compatibility problem with firefox API
Use Soundmanager 2, is a very good hybrid API, which uses a Flash player when there is no full HTML5 support. http://www.schillmania.com/projects/soundmanager2/…
-
1
votes1
answer261
viewsA: jQuery UI autocomplete only works once
The autocomplete function should be set only once, preferably on page loading. In your code it is linked to the click event, and is reset each time the #edit_object element is clicked, which…
-
1
votes1
answer552
viewsA: Take autocomplete return and put in different inputs
I recommend using jQuery UI, as this jquery.autocomplete.js file is an outdated version of the function. You can get separate values by following this example:…
-
0
votes2
answers660
viewsA: android Cordova camera plugin problem
If you are using the latest version of Cordova, check index.html for the following line: <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com…
-
0
votes2
answers422
viewsA: Position Absolute is not working
I was a little confused by the question, because I understood two different possibilities: as div with position:absolute do not have coordinates, that is, you did not inform the position they should…
-
0
votes1
answer59
viewsA: Cordova project build already ready
The contents of the Platforms folders are changed with each build, so the main code has to be in the www folder at the project root.
-
4
votes1
answer322
viewsA: Search field add product to cart
From what I checked on your site, this only happens when the screen is not wide enough to display the entire menu. Thus, the search field is only displayed when you click on the search icon. The…
cssanswered Giordano Bruno 131 -
0
votes2
answers226
viewsA: Vertical alignment in a div with position:Bsolute
It is possible yes, it only gets a little longer. It is necessary to create another DIV within the one that will have absolute position: <div class="teste"> <div class="testeInterna">…