Posts by Luiz Gonçalves • 206 points
6 posts
-
2
votes2
answers2420
viewsA: Bootstrap menu does not work Responsive
Your Bootstrap.js file is being loaded first than the jquery-2.1.3.min. js file, so you are not opening the menu. If a js file depends on another, it always needs is below, and always prudent put…
-
1
votes2
answers635
viewsA: Bootstrap menu does not work, according to the code provided by the site
Buddy, Bootstap doesn’t work with jQuery higher than 3.0.0 Consider using a previous stable version.
-
1
votes3
answers87
viewsA: Modal jQuery or Bootstrap that receives email and name, automatically displayed when loading the page
The problem is you’re calling the jquery.minjs. after the code. Try this: <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script> <script…
-
2
votes1
answer78
viewsA: Modal display when submitting form. No loading page
I would add the attribute required="required" in every field. To validate in the back end, you would do an ajax check. If there are blank fields, return the error in real-time. You can do something…
-
1
votes4
answers2449
viewsA: HTML 5 Bootstrap google maps
Add ;output=embed" at the end of the iframe src. Note that the two that work have it at the end :)
-
2
votes3
answers61
viewsA: Multiple entries in class attribute do not work
Just slip the quotes: echo "<div class=\"alert alert-success\" role=\"alert\">Logado com sucesso</div>";