Posts by Anderson Anizio • 73 points
3 posts
-
1
votes1
answer556
viewsA: Difference between Gulp and Gulp series
series() combines tasks and executes them one after the other in the specified order. Example: const { series } = require('gulp'); function cleanDist(cb) { // task code... } function buildHTML(cb) {…
-
0
votes1
answer53
viewsA: Toggle menu when I click on menu one it shows me item two
I believe that this way it resolves: const itemLinks = document.querySelectorAll('.header-item') const navHeader = document.querySelectorAll('.nav-menu') for (let i = 0; i < itemLinks.length;…
-
3
votes1
answer511
viewsA: Refresh page with button, but without blinking
Only with HTML and CSS (as far as I know) is possible, you will need to use Javascript with AJAX technique/technology as well. You have several options for this, among them: Native: XHR (XML HTTP…