I'm trying to disable the button after clicking, so I will not be sending the form data multiple times if the user clicks.
My button
<input type="submit" class="formButton" name="send" id="send" value="Enviar">
my js...
I am using two navbar in my project and I have a problem to align the text of the first menu vertically, I tried to create a structure to change but I did not succeed, what I have is this:
First Navbar :
<div class="navb...
What is the best way to set up a query in C #? Is it advisable to use concatenation with the + operator? For example:
query += " WHERE nome LIKE '%" + nome + "%'";
Here is a% w of% that I set as an example to illustrate the situat...
What's the difference in using random without import , right in method.
public class random {
public static void main(String[] args) {
int x = (int) (Math.random() * 10);
System.out.println(x);
}
}...
In "prototypes" I have used the Element.prototype and HTMLElement.prototype several times. I wanted to know what each one is and what the difference between them is, if possible. Because in some tests, like these, I had the same re...
I'm trying to learn how the class works SwingWorker<T,V> , I have already done another question regarding one of his methods.
Looking at the source code of this class, I found the publish() method written as follows:...
I have some images inside the folder drawable and I call them via code:
public void inserindoImage(ImageView image,int rid,LinearLayout linear )
{
image.setBackgroundResource(rid);
linear.addView(image);
}
Wh...