Posts by marcelps • 1 point
2 posts
-
-1
votes1
answer40
viewsQ: Align UL (result) with input (filter)
I’m doing a filter search, when the user type, will appear the results in a UL. The UL (where it shows the filter results) is not aligned with the input. Follow an image to get an idea: Any idea?…
-
0
votes3
answers302
viewsA: Find the highest value ending ID
You can do it this way (without jQuery): var divs = document.getElementsByTagName("div"); var length = divs.length; var highest = 0; for(var i = 0; i < length; i++) { var id=…