Posts by Lucas Bezerra • 84 points
8 posts
-
0
votes1
answer34
viewsA: Add jquery values from input field
When you take a value of one input, it is stored in a string. I believe Javascript is concatenating the strings instead of add up. If that’s the case, try something like: var bilhete_soma =…
-
1
votes1
answer29
viewsA: How to display the information in the referenced id?
Hello, good afternoon! The comment Ricardo made is correct, just to clarify: Subastitua document.write(visit); For document.getElementById('count').innerHTML = visit I hope I helped, good luck!…
-
0
votes1
answer48
viewsA: Import external Javascript file code
Hello, good afternoon! One of the possible ways to do this is through modules, in this case the syntax is very simple, let’s assume that you want to export a function: Function.js export function…
javascriptanswered Lucas Bezerra 84 -
1
votes1
answer247
viewsA: Styling Html5 datepicker
Any form of stylization of this datepicker generated by the browser would be no more than a mere gambiarra. The most stable way that ensures compatibility between all browsers is to use a common…
-
1
votes1
answer132
viewsA: Center image element and decrease column size in Table
Hello If I understand correctly what you want to do is to centralize elements within a TD (table cell). What I normally do in these cases is to use the flexbox since it helps a lot in most tasks of…
html5answered Lucas Bezerra 84 -
0
votes1
answer71
viewsA: Javascript code gets all white in Visual studio, no syntax highlighting
In the footer of the program there is a bar that shows information from the document, click on Plain Text and select the language you are working on, in the HTML case…
-
0
votes1
answer101
viewsA: "Error: cannot set Property appendchild() of null
I’m sorry, but your question was very confusing, and it was only by analyzing the code that it was unclear what your intention was. Don’t take this the wrong way, you’re probably starting out, try…
-
0
votes4
answers1423
viewsA: Materialize label does not rise when I populate an input
Adds this javascript on the page, it makes the Materialize update the input boxes, if you need more information follow the official documentation link. $(document).ready(function() {…