Posts by Bruno Manso • 51 points
2 posts
-
0
votes2
answers102
viewsQ: Active menu item but no longer works as link
a basic question about Jquery but intriguing. Active li in menu. This logic I used works. However, the 'a' tag loses its main feature which is a link to the other pages. <html> <head>…
jqueryasked Bruno Manso 51 -
5
votes2
answers1050
viewsQ: How to order numbers from an array?
I do not find the function to sort, increasingly, the numbers drawn. <?php $resultado = array(); for ($i = 0; $i <= 5; $i++){ array_push($resultado,rand(1,60)); } print_r($resultado); # Exibe…