Posts by Giovan Cruz • 308 points
10 posts
-
1
votes1
answer251
viewsA: Deploy automatico Bitbucket - PHP
I know the question is old but, currently it is possible to deploy automated via bitbucket-pipelines using in conjunction with the git-ftp. Just enable in your repository to use and configure your…
-
1
votes1
answer181
viewsA: Add rows to a table with Jquery and add a new ID
I do not know if I understood very well what was missing for you to finish what you need, but initially you have already created an object containing the DOM from the copy, just manipulate it before…
jqueryanswered Giovan Cruz 308 -
1
votes1
answer46
viewsA: SPANS do not rotate with Rotate and direction inside the LI
Inline elements cannot be rotated. Spans are inline elements by default, forcing display:block or display:inline-block in its element the rotation will work. Another way is to use rotation based on…
cssanswered Giovan Cruz 308 -
3
votes1
answer208
viewsA: Automatically select <option> with click/select action
You can trigger your own event by loading the function, example: $(".supplier").on('change', function(event) { //sua lógica }).trigger('change'); This way every time you click, you will go through…
jqueryanswered Giovan Cruz 308 -
1
votes1
answer129
viewsA: Can the Developer Tool enable the Device Keyboard? In Chrome’s Devtools to simulate the keyboard?
It is possible to simulate a prototype of the display using Chrome with the Nexus 5x device, according to print: Being a prototype, you won’t have keyboard functionality. I couldn’t find the same…
-
2
votes2
answers851
viewsA: Required does not work (.Ubmit)
There is an HTML5 method checkValidity that is executed in Submit validations. Below is an example: $(function() { $("#submitButton").click(function(e) { var $form = $("#loginform"); if (…
-
0
votes2
answers197
viewsA: How to change image when changing status in Mysql database without refresh with jquery
The way it did is almost there, however you are still reloading the page with window.location.reload. In your PHP file you can make the logic return the current status, as it did in the list,…
jqueryanswered Giovan Cruz 308 -
1
votes2
answers307
viewsA: pass parameters through jQuery-ui Dialog
First tip: Never use more than one element with the same ID. The element ID has to be unique, when you need more than one item use its class repeating in the other elements. Anyway, in php you can…
-
1
votes1
answer1487
viewsA: Graph of minutes per hours with Chart js
I was able to solve it. I think the error was in the date format or in the rounding method. Below is the result. $(function() { drawCharts('real', true, true); }); function drawCharts(period,…
-
1
votes1
answer1487
viewsQ: Graph of minutes per hours with Chart js
I don’t know if I can be clear, but I would like to make a graph showing the CPU usage line per minute with Chart JS, but with the Y axis rounding per hour. I was able to make the rounding using…