Posts by fwerther • 91 points
5 posts
-
4
votes2
answers824
viewsA: Toggle status (True/False) by clicking a button - Javascript
I found your code a bit messy, but if the goal was just to change the colors, see if this example answers your problem: var button_MudaCor = document.querySelector("#mudarCor");…
-
0
votes1
answer42
viewsA: Settimeout, make the text come out after a while
There are several ways to solve this problem! Using only CSS #invisivel { -moz-animation: cssAnimation 0s ease-in 5s forwards; /* Firefox */ -webkit-animation: cssAnimation 0s ease-in 5s forwards;…
-
1
votes1
answer97
viewsA: How do I create a new zeroed submodule in git?
There are a few different ways to deal with git submodules. I don’t quite understand what you’re up to, but see if it’s some of those options: Create a submodule by specifying a particular branch in…
-
0
votes1
answer212
viewsA: Setting Image on a Button using Netbeans 8.2
I don’t know if your image is inside the classpath of your application. Apparently it is, since you can see its preview in the IDE. Can make a test and check if instantiating like this works?…
-
1
votes1
answer720
viewsA: Display specific error! java.sql.Sqlexception'
The console is showing a lot of information because you are displaying all the exception stacktrace. Instead, what you are looking for is the detailed exception message, which can be accessed…