Posts by Guilherme Fabrin Franco • 78 points
5 posts
-
1
votes2
answers49
viewsA: Javascript code enhancement for site field validation
I suggest you use the index function to check all these words. var forbidden = ['banana', 'maca', 'pera']; var result = 'banana'; document.write(forbidden.indexOf(result)>-1?'Essa palavra não é…
-
1
votes1
answer362
viewsA: Jquery autocomplete inside modal
The problem lies in two points. 1º the modal class defines a z-index of 1050; 2º the jquery-ui plugin in the ui-front class' a z-index of 100; That is if you change the z-index of the ui-front class…
-
1
votes1
answer105
viewsA: Thumbnail Open Graph does not appear on Whatsapp
The problem was that the site used https and the images within Thumb were using http.
-
0
votes1
answer105
viewsQ: Thumbnail Open Graph does not appear on Whatsapp
On the website https://www.institutomagnus.org/blog/instituto-magnus-no-programa-pet-patas-da-tv-sol-indaiatuba I am giving maintenance I made the necessary modifications to meet the link below. But…
-
3
votes2
answers179
viewsQ: Span within Headings H1...H6
It is semantically incorrect to put a span inside a Heading? Ex: <h1>Isso é <span>verdade</span></h1>