2 résultats trouvés

par delion
15 déc. 2025, 14:05
Forum : Référencement
Sujet : Améliorer la visibilité d’un projet web tout en restant clean côté code
Réponses : 3
Vues : 32277

Re: Améliorer la visibilité d’un projet web tout en restant clean côté code

Totally agree with this. Clean code is important, but it doesn’t matter much if no one can find the site. Simple SEO basics like proper titles, meta descriptions, semantic HTML, and clear structure can make a big difference without adding complexity. In my experience, focusing on content organizatio...
par delion
22 nov. 2025, 07:59
Forum : Javascript
Sujet : ontouch versus onclick comment les différencier
Réponses : 5
Vues : 42432

Re: ontouch versus onclick comment les différencier

This is a common issue when using both ontouchand uncle on the same element. THEtouchstart → touchend → click, so your touch handlers will always fire before the click event unless you differentiate the gestures manually. You can track the movement distance. If the finger moves only a tiny amount, t...