Posts by Geniton Lima • 79 points
7 posts
-
1
votes2
answers67
viewsQ: Spacing in table
Good morning, everyone! All right? I have a little problem on my table I want to make a table in this model here I did it this way here, what’s the problem? When it’s in the mobile version, the…
-
1
votes4
answers104
viewsQ: Hover does not work
.csgo-player { display: flex; align-items: center; justify-content: center; position: relative; } .csgo-player-link { width: 40%; position: relative; } .csgo-player-info { padding: 10px; height:…
-
0
votes1
answer53
viewsQ: How do you take the elements
const headerNavLink = document.querySelectorAll('.header-nav-link') const headerNavItemTitle = document.querySelectorAll('.header-nav-item__title') headerNavItemTitle.forEach(function(e, indice) {…
-
0
votes3
answers72
viewsQ: Add class and remove
Problem I want to get him to add the attribute active in suite-internal-item and remove the ones you have, but it’s not working. jQuery $('.suite-internal-link').on('click',function(e){…
jqueryasked Geniton Lima 79 -
2
votes1
answer26
viewsQ: Instantiated functions
function relogio(elemento){ console.log(elemento) } $('[wm-relogio]').each((i,e) => new relogio(e)) What’s the difference between relogio and new relogio instantiated? Both of which work?…
javascriptasked Geniton Lima 79 -
0
votes1
answer53
viewsQ: Toggle menu when I click on menu one it shows me item two
const itemLinks = document.querySelectorAll('.header-item') const navHeader = document.querySelectorAll('.nav-menu') for (let i = 0; i <…
-
0
votes1
answer102
viewsQ: How to hide a menu by clicking on another in JS?
I can’t get when one menu opens the other to close. I tried the following code: const itemLinks = document.querySelectorAll('.header-item') const menus = document.querySelectorAll('.nav-menu')…