Posts by Jonatas Nardi • 164 points
11 posts
-
1
votes2
answers536
viewsQ: Service with list of cars and models
Good afternoon, I’m about to develop a website where you’ll need to fill in the car model, make and year. I would like to know if you know any web service that brings me this information or I will…
-
1
votes1
answer226
viewsA: Make Vertical slide with scroll and fade and Parallax
The way you want I don’t know exactly how to do, but I can give you a light with the use of a plugin called Slick slider. URL: http://kenwheeler.github.io/slick/ Hugs!…
-
0
votes2
answers2189
viewsA: How to delete all records from the database
If you want to delete all records from a table in a database, you can use the following syntax: DELETE FROM NomeDaTabela; Hugs!
-
0
votes1
answer32
viewsA: Error in html file
You can paste this code that will work ;) <html> <script> function execucoes() { var form = document.forms[0]; var idade = form.querySelector('input[name="idade"]'); var nome =…
-
1
votes2
answers71
viewsA: How to apply Opacity to IE8
Try it with this code. .minha-classe { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; } Hugs!…
cssanswered Jonatas Nardi 164 -
1
votes1
answer818
viewsA: Calling javascript function with combo
I don’t know if that’s what you want, but you can do that with jQuery. By selecting a combo option, you can call another function within this event. $('.select-combos').change(function(event) {…
-
2
votes1
answer57
viewsA: Link redirect not working in Firefox
You can do so, when your #form receives a Ubmit, you disable it and perform your action, which in case would be back/cancel. With that return false; Submit will no longer have any action.…
-
1
votes2
answers61
viewsA: Adapt css to viewport
I couldn’t understand your doubt very well, but I believe it is to leave the image adapted to the exact size of the screen. .minha-imagem { max-width: 100%; width: 100%; height: auto; overflow:…
-
2
votes1
answer123
viewsA: Navbar in trouble
Try using this code if you have the jQuery library, if not, just paste this code into the <head>: <head> <meta charset="utf-8" /> <meta name="viewport"…
-
0
votes3
answers518
viewsA: How do I fill address data through CNPJ?
I don’t know any framework that can bring this "tray" information to you, I don’t think it exists. A database service will be required, in which there will be at least the fields cnpj (Primary key),…
javascriptanswered Jonatas Nardi 164 -
2
votes1
answer81
viewsA: Soon need to stay on top of menu but menu is not clickable
Add the method pointer-events: none; in the class of your logo, in your case would look like this: img#logo { height: 254px; width: 373px; position: absolute; left: 50%; margin-left: -186px;…