Posts by Paschoali • 21 points
3 posts
-
1
votes4
answers1837
viewsA: How to use Json in an html
Or use the foreach concept: for (var i in arr1) { out += "<p> " + arr1[i].Name + " - " + arr1[i].City + " - " + arr1[i].Country + " </p>"; }
-
1
votes1
answer968
viewsA: How to verify the occurrence of a string in a row and pick up x characters on the left and y on the right?
Hello. A common select with Where doesn’t suit you? SELECT Name, Processes FROM (Table) WHERE Processes LIKE '%df%' AND Processes LIKE '%25372%'
-
0
votes2
answers114
viewsA: Solved - Responsive Menu, Drop down Event via JS
Lucas, what is it #menu-button? I did not find this ID in your HTML. What you can do is to treat via jQuery the click on any class item has-sub. This way, all the main menu items come into play.…