Posts by Felipe Moreira • 59 points
9 posts
-
1
votes2
answers44
viewsA: Difference between <!DOCTYPE html> and <html>
The <html> itself is a tag to start the file, basically. Despite the similar syntax, Doctype is not an HTML tag. Doctype HTML is a declaration to inform the browser which version of HTML is…
-
0
votes1
answer103
viewsA: Display text near the mouse pointer when resting it on an image
What you want is called Tooltip. I advise using Bootstrap to do it more easily. I made it very simple and easy to understand, then you just pack whatever you want. .tooltip { position: relative;…
-
0
votes1
answer33
viewsA: Enable disabled by clicking the javascript button
Try this: JS: function enable() { document.querySelector('.btn-escrever').disabled = false; } HTML: <button type="button" onclick="enable()" class="btn-escrever" disabled>✒️</button>…
-
0
votes1
answer42
viewsA: Loop and how to enable editing to write in javascript
I did a quick thing here. Regarding the add button, I think just make Javascript add post it tags. The problem I think is in relation to the space, I advise using Bootstrap in relation to this. In…
-
0
votes2
answers418
viewsA: How can I recover File explorer from VS Code side menu?
Right-click on the side and select the options that are unchecked.…
visual-studio-codeanswered Felipe Moreira 59 -
0
votes2
answers53
viewsA: Hide field in form
Create an option for a lawyer. <option id="advogado" value="advogado">Advogado</option> Then take the value of this option and use in Javascript using the IF clause. var opAdvogado =…
-
1
votes4
answers112
viewsA: Check the amount of li’s inside a Javascript div
Easy and practical my friend. You will need to use Javascript. If you want the quantity to appear on the console, just give a console.log const quantidadeLi = document.querySelectorAll('li').length;…
javascriptanswered Felipe Moreira 59 -
-2
votes1
answer608
viewsQ: What is the difference between Mdbootstrap and Bootstrap?
I’m currently using Bootstrap, but having researched it, I discovered MDB. I saw that it contains more contact with programming language than Bootstrap, and I wanted to know the difference between…
twitter-bootstrapasked Felipe Moreira 59 -
1
votes0
answers19
viewsQ: Take user information and check if domain is available
I want to make a code where it checks the user’s information and sees if the domain exists. However, it returns absolutely nothing. HTML: <form action="teste.php" method="POST"…