Posts by jobson morais de medeiros • 12 points
5 posts
-
0
votes2
answers23
viewsA: How to disable the page scroll by going over an element using pure Javascript and (or) Css, and without hiding the scroll bar
To hide the scroll but still being able to scroll you can use: /* Oculta scrollbar no Chrome, Safari e Opera */ .exemplo::-webkit-scrollbar { display: none; } /* Oculta scrollbar no IE, Edge e…
-
-2
votes1
answer39
viewsA: How to use a multi-page script without giving the eventListener error in the console?
Try for the JS: botaoex.addEventListener("click", () => { alert("botao ex"); }); Leave the same id on both pages.
-
0
votes4
answers21058
viewsA: How to push local folder to Github
This happened because you didn’t link between your local repository and the repository on Github. Use the command git remote add <apelido> <link-do-repositório-github>, replacing what is…
-
-4
votes2
answers69
viewsA: Menu Cafeteria
I used the dictionary, a data structure that is very useful and uses the key-value pair. I believe that working like this is more natural. print('================================= \n| COD | PRODUTO…
pythonanswered jobson morais de medeiros 12 -
0
votes2
answers190
viewsA: How to close Vscode window?
I put it on the first line of settings.json "editor.hover.enabled": false, and solved. No hint is shown at Hover.
visual-studio-codeanswered jobson morais de medeiros 12