Posts by Luan Sabino • 117 points
7 posts
-
0
votes2
answers358
viewsA: How can I adjust my chat done in html and css?
What you can do is add the form to a div <div id="chat"> <div id="mensagem"> <form method="post"> <input type="text" name="mensagem" placeholder="Digite sua mensagem..."…
-
3
votes3
answers10568
viewsA: What is the difference between using += and =+ in Python?
1.x += n is an abbreviation of x = x + n 2.x =+ n is an abbreviation of x = (+n) then the first indicates the sum of the attribute x with the attribute n, the second indicates that the attribute x…
-
1
votes1
answer48
viewsA: Problems with printing float variables
all right? So I won’t know how to explain to you why this occurs but apparent from the moment it assumes the 2.0 it does not assume an exact value but very close to 2.0 as for example 2,000...1 soon…
canswered Luan Sabino 117 -
2
votes3
answers1442
viewsA: Print 5 times number 5 on screen
Hey, how you doing? So the way you put it you will be printing the variable i , so it will not be the number 5 in the 5 prints, but will assume each time a value, from 0 to 4. The correct in this…
javascriptanswered Luan Sabino 117 -
1
votes1
answer63
viewsQ: Add delay/timeout to a . Hover()
Hello, I have a function. Where I would like that in the second instance (mouseleave) a delay occurs so that what is within the function occurs, I have already tried to set within the second…
-
1
votes1
answer82
viewsQ: Activate the click event with a class
I’m trying to add an event click to a class that is not initially present on the page, since it is added later when the user enters the data. The element in question is this: <div class="tarefas"…
-
0
votes1
answer130
viewsQ: Transfer content from one Div to another
Hello I need to create a function that is able to move the content from one div to another, for example <li class="itens-interface" id="to-do"> <div class="topo-interface"> <h2…